import type { Metadata, Viewport } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import { ThemeProvider } from "@/components/theme-provider"; import { Toaster } from "@/components/ui/sonner"; import "./globals.css"; const geistSans = Geist({ subsets: ["latin"], variable: "--font-geist-sans", }); const geistMono = Geist_Mono({ subsets: ["latin"], variable: "--font-geist-mono", }); export const metadata: Metadata = { title: "SF", description: "The evolution of Singularity Forge — now a real coding agent. One command. Walk away. Come back to a built project.", applicationName: "SF", icons: { icon: [ { url: "/icon-light-32x32.png", media: "(prefers-color-scheme: light)", }, { url: "/icon-dark-32x32.png", media: "(prefers-color-scheme: dark)", }, { url: "/icon.svg", type: "image/svg+xml", }, ], }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, maximumScale: 1, userScalable: false, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }