import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {title:"STAGE BOND — The stage is yours",description:"The stage is yours. Your work. Your people. Your own space. Create a Stage Page, share your work, and build your Bonds.",icons:{icon:"/favicon.svg",shortcut:"/favicon.svg"}};
export default function RootLayout({children}:{children:React.ReactNode}){return <html lang="en"><body>{children}</body></html>;}