import { type ReactNode } from "react"; import Head from "next/head"; import DottedGridBackground from "../components/DottedGridBackground"; interface LayoutProps { children: ReactNode; } const DefaultLayout = (props: LayoutProps) => { const description = "Assemble, configure, and deploy autonomous AI Agents in your browser."; return (
Agent-GPT {props.children} {/*
); }; export default DefaultLayout;