repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
The Living OS cockpit
stars
latest
clone command
git clone gitlawb://did:key:z6Mku78K...XywC/living-os-cockp...git clone gitlawb://did:key:z6Mku78K.../living-os-cockp...59751530feat: surface worker supervisor health in live work5h ago| import './globals.css'; |
| #2 | import type { Metadata } from 'next'; |
| #3 | import { Cormorant_Garamond, Inter } from 'next/font/google'; |
| #4 |
| #5 | const serif = Cormorant_Garamond({ |
| #6 | subsets: ['latin'], |
| #7 | weight: ['500', '600', '700'], |
| #8 | variable: '--font-serif', |
| #9 | }); |
| #10 |
| #11 | const sans = Inter({ |
| #12 | subsets: ['latin'], |
| #13 | weight: ['400', '500', '600', '700'], |
| #14 | variable: '--font-sans', |
| #15 | }); |
| #16 |
| #17 | export const metadata: Metadata = { |
| #18 | title: 'The Living.OS', |
| #19 | description: 'Sovereign operator cockpit · powered by Aethon', |
| #20 | icons: { |
| #21 | icon: '/brand/theliving-ai-logo.png', |
| #22 | apple: '/brand/theliving-ai-logo.png', |
| #23 | }, |
| #24 | }; |
| #25 |
| #26 | export default function RootLayout({ children }: { children: React.ReactNode }) { |
| #27 | return ( |
| #28 | <html lang="en" className={`${serif.variable} ${sans.variable}`}> |
| #29 | <body className="bg-[#0a0908] font-sans text-zinc-100 antialiased"> |
| #30 | {children} |
| #31 | </body> |
| #32 | </html> |
| #33 | ); |
| #34 | } |
| #35 |