import { isRunningLocally } from "@/utils/features"; import "./globals.css"; import type { Metadata } from "next"; import { Geist } from "next/font/google"; const geist = Geist({ subsets: ["latin"] }); export const metadata: Metadata = { title: "EventCatalog Studio", description: "Design and collaborate on architecture diagrams and designs", }; export default async function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }