Spaces:
Build error
Build error
| import type { Metadata } from "next"; | |
| import { Geist, Geist_Mono } from "next/font/google"; | |
| import "./globals.css"; | |
| import { Toaster } from "@/components/ui/toaster"; | |
| const geistSans = Geist({ | |
| variable: "--font-geist-sans", | |
| subsets: ["latin"], | |
| }); | |
| const geistMono = Geist_Mono({ | |
| variable: "--font-geist-mono", | |
| subsets: ["latin"], | |
| }); | |
| export const metadata: Metadata = { | |
| title: "Sofía Cloud - Multiagente AI", | |
| description: "Sistema multiagente para análisis de código, gestión de repositorios y desarrollo asistido por IA.", | |
| keywords: ["Sofía", "AI", "Next.js", "TypeScript", "Tailwind CSS", "shadcn/ui", "Agentes", "Código"], | |
| authors: [{ name: "Sofía Cloud Team" }], | |
| icons: { | |
| icon: "/logo.svg", | |
| }, | |
| openGraph: { | |
| title: "Sofía Cloud - Multiagente AI", | |
| description: "Sistema multiagente para análisis de código y desarrollo con IA", | |
| type: "website", | |
| }, | |
| twitter: { | |
| card: "summary_large_image", | |
| title: "Sofía Cloud - Multiagente AI", | |
| description: "Sistema multiagente para análisis de código y desarrollo con IA", | |
| }, | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="en" suppressHydrationWarning> | |
| <body | |
| className={`${geistSans.variable} ${geistMono.variable} antialiased bg-background text-foreground`} | |
| > | |
| {children} | |
| <Toaster /> | |
| </body> | |
| </html> | |
| ); | |
| } | |