33 lines
754 B
TypeScript
33 lines
754 B
TypeScript
|
|
import type { Metadata } from 'next'
|
||
|
|
import { Inter } from 'next/font/google'
|
||
|
|
import './globals.css'
|
||
|
|
import { Providers } from './providers'
|
||
|
|
import { ErrorBoundary } from '@/components/error-boundary'
|
||
|
|
|
||
|
|
const inter = Inter({
|
||
|
|
subsets: ['latin'],
|
||
|
|
variable: '--font-inter',
|
||
|
|
})
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'Phoenix Sankofa Cloud',
|
||
|
|
description: 'The sovereign cloud born of fire and ancestral wisdom.',
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function RootLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode
|
||
|
|
}) {
|
||
|
|
return (
|
||
|
|
<html lang="en" className="dark">
|
||
|
|
<body className={`${inter.variable} font-sans antialiased`}>
|
||
|
|
<ErrorBoundary>
|
||
|
|
<Providers>{children}</Providers>
|
||
|
|
</ErrorBoundary>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|