import clsx from "clsx"; import Head from "next/head"; import { type ReactNode } from "react"; interface LayoutProps { children: ReactNode; className?: string; centered?: boolean; } const DefaultLayout = (props: LayoutProps) => { const description = "Assemble, configure, and deploy autonomous AI Agents in your browser."; return (
AgentGPT
{props.children}
); }; export default DefaultLayout;