agent-go / src /app /layout.tsx
arudradey's picture
Create src/app/layout.tsx
33ec3ef verified
raw
history blame contribute delete
516 Bytes
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>
);
}