Spaces:
Build error
Build error
| import type { Metadata } from "next"; | |
| import { Geist, Geist_Mono } from "next/font/google"; | |
| import "./globals.css"; | |
| import { Toaster } from "sonner"; | |
| const geistSans = Geist({ | |
| variable: "--font-geist-sans", | |
| subsets: ["latin"], | |
| }); | |
| const geistMono = Geist_Mono({ | |
| variable: "--font-geist-mono", | |
| subsets: ["latin"], | |
| }); | |
| export const metadata: Metadata = { | |
| title: "AI Influencer Studio", | |
| description: "Plataforma SaaS para crear, gestionar y monetizar influencers de IA de forma escalable.", | |
| keywords: ["AI", "Influencer", "SaaS", "Monetizaci贸n", "OnlyFans", "Patreon", "Fanvue", "Automatizaci贸n"], | |
| authors: [{ name: "AI Influencer Studio" }], | |
| icons: { | |
| icon: "/logo.svg", | |
| }, | |
| openGraph: { | |
| title: "AI Influencer Studio", | |
| description: "Plataforma para crear y monetizar influencers de IA", | |
| type: "website", | |
| }, | |
| twitter: { | |
| card: "summary_large_image", | |
| title: "AI Influencer Studio", | |
| description: "Plataforma para crear y monetizar influencers de 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 richColors position="bottom-right" /> | |
| </body> | |
| </html> | |
| ); | |
| } | |