import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import type { ReactNode } from "react"; import { TooltipProvider } from "@/components/ui/tooltip"; import { cn } from "@/lib/utils"; import "./globals.css"; const sans = Geist({ variable: "--font-sans", subsets: ["latin"], weight: "variable", display: "swap", }); const mono = Geist_Mono({ variable: "--font-mono", subsets: ["latin"], weight: "variable", display: "swap", }); export const metadata: Metadata = { title: "Agent Browser Sandbox", description: "An Eve example that runs agent-browser in Vercel Sandbox.", }; export default function RootLayout({ children }: { readonly children: ReactNode }) { return ( {children} ); }