Update Chorus branding and configuration UI improvements
- Updated branding transformation documentation - Enhanced config UI layout and styling with Tailwind config updates - Modified web embed integration for improved component packaging - Added Next.js build artifacts to .gitignore for cleaner repository 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -193,7 +193,7 @@ export default function SetupPage() {
|
||||
|
||||
{/* Resume Setup Notification */}
|
||||
{isResuming && (
|
||||
<div className="mb-8 bg-chorus-secondary bg-opacity-5 border border-chorus-secondary border-opacity-20 rounded-lg p-6">
|
||||
<div className="mb-8 bg-chorus-secondary bg-opacity-20 border border-chorus-secondary rounded-lg p-6">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="flex items-start">
|
||||
<div className="flex-shrink-0">
|
||||
@@ -205,7 +205,7 @@ export default function SetupPage() {
|
||||
<h3 className="text-sm font-medium text-chorus-secondary">
|
||||
Setup Progress Restored
|
||||
</h3>
|
||||
<p className="text-small text-chorus-text-secondary mt-1">
|
||||
<p className="text-small text-gray-300 mt-1">
|
||||
Your previous setup progress has been restored. You're currently on step {currentStep + 1} of {SETUP_STEPS.length}.
|
||||
{completedSteps.size > 0 && ` You've completed ${completedSteps.size} step${completedSteps.size !== 1 ? 's' : ''}.`}
|
||||
</p>
|
||||
@@ -252,12 +252,12 @@ export default function SetupPage() {
|
||||
<div className="flex items-center">
|
||||
<div className="flex-shrink-0 mr-3">
|
||||
{isCompleted ? (
|
||||
<CheckCircleIcon className="h-5 w-5 text-chorus-secondary" />
|
||||
<CheckCircleIcon className="h-5 w-5 text-green-400" />
|
||||
) : (
|
||||
<div className={`w-5 h-5 rounded-full border-2 flex items-center justify-center text-xs font-medium ${
|
||||
isCurrent
|
||||
? 'border-chorus-primary bg-chorus-primary text-white'
|
||||
: 'border-chorus-border-emphasis text-chorus-text-subtle'
|
||||
? 'border-chorus-secondary bg-chorus-secondary text-white'
|
||||
: 'border-gray-600 text-gray-500'
|
||||
}`}>
|
||||
{index + 1}
|
||||
</div>
|
||||
@@ -280,13 +280,13 @@ export default function SetupPage() {
|
||||
})}
|
||||
</nav>
|
||||
|
||||
<div className="mt-8 pt-6 border-t border-chorus-border-invisible">
|
||||
<div className="mt-8 pt-6 border-t border-gray-800">
|
||||
<div className="text-small mb-3">
|
||||
Progress: {completedSteps.size} of {SETUP_STEPS.length} steps
|
||||
</div>
|
||||
<div className="w-full bg-chorus-border-subtle rounded-sm h-2">
|
||||
<div className="w-full bg-gray-800 rounded-sm h-2">
|
||||
<div
|
||||
className="bg-chorus-primary h-2 rounded-sm transition-all duration-500"
|
||||
className="bg-chorus-secondary h-2 rounded-sm transition-all duration-500"
|
||||
style={{ width: `${(completedSteps.size / SETUP_STEPS.length) * 100}%` }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user