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:
anthonyrawlins
2025-08-26 23:41:17 +10:00
parent 82036bdd5a
commit c2dfaba4a6
8 changed files with 302 additions and 57 deletions

View File

@@ -1,5 +1,6 @@
import type { Metadata } from 'next'
import './globals.css'
import ThemeToggle from './components/ThemeToggle'
export const metadata: Metadata = {
title: 'CHORUS Agent Configuration',
@@ -14,9 +15,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className="bg-chorus-paper min-h-screen">
<body className="bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-gray-100 min-h-screen transition-colors duration-200">
<div className="min-h-screen flex flex-col">
<header className="bg-white border-b border-chorus-border-invisible">
<header className="bg-gray-900 dark:bg-black border-b border-gray-200 dark:border-gray-800 transition-colors duration-200">
<div className="max-w-7xl mx-auto px-8 py-6">
<div className="flex justify-between items-center">
<div className="flex items-center space-x-4">
@@ -40,6 +41,7 @@ export default function RootLayout({
<div className="status-online">
System Online
</div>
<ThemeToggle />
</div>
</div>
</div>
@@ -49,9 +51,9 @@ export default function RootLayout({
{children}
</main>
<footer className="bg-white border-t border-chorus-border-invisible">
<footer className="bg-gray-900 dark:bg-black border-t border-gray-200 dark:border-gray-800 transition-colors duration-200">
<div className="max-w-7xl mx-auto px-8 py-6">
<div className="flex justify-between items-center text-sm text-chorus-text-tertiary">
<div className="flex justify-between items-center text-sm text-gray-400">
<div>
© 2025 Chorus Services. All rights reserved.
</div>