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 (