| import type { Metadata } from "next"; | |
| import "./globals.css"; | |
| export const metadata: Metadata = { | |
| title: "Agentic Browser — Powered by Gemini", | |
| description: | |
| "AI-driven browser automation with Gemini vision. Control any website with natural language.", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <html lang="en"> | |
| <body className="min-h-screen bg-[#0f0f13] text-[#e2e2f0] antialiased"> | |
| {children} | |
| </body> | |
| </html> | |
| ); | |
| } |