- Extensive updates to system configuration and deployment - Enhanced documentation and architecture improvements - Updated dependencies and build configurations - Improved service integrations and workflows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
36 lines
897 B
TypeScript
36 lines
897 B
TypeScript
import type { Metadata } from 'next'
|
|
import { Inter, Exo } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
variable: '--font-inter',
|
|
display: 'swap',
|
|
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
})
|
|
|
|
const exo = Exo({
|
|
subsets: ['latin'],
|
|
variable: '--font-exo',
|
|
display: 'swap',
|
|
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'CHORUS Dashboard',
|
|
description: 'Lead management dashboard for CHORUS Services',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en" className={`${inter.variable} ${exo.variable}`}>
|
|
<body className="font-sans antialiased bg-white dark:bg-carbon-950 text-carbon-950 dark:text-white">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
} |