import type React from "react" import type { Metadata } from "next" import { Inter } from "next/font/google" import "./globals.css" const inter = Inter({ subsets: ["latin"] }) export const metadata: Metadata = { metadataBase: new URL("https://bondingcurve.tech"), title: "Bonding Curve Research Group", description: "Independent research collective studying bonding curves and programmable financial primitives", generator: "v0.app", icons: { icon: "data:image/svg+xml,📈", }, openGraph: { title: "Bonding Curve Research Group", description: "Independent research collective studying bonding curves and programmable financial primitives", url: "https://bondingcurve.tech", siteName: "Bonding Curve Research Group", images: [ { url: "/og-image.jpg", width: 1200, height: 630, alt: "Bonding Curve Research Group", }, ], locale: "en_US", type: "website", }, twitter: { card: "summary_large_image", title: "Bonding Curve Research Group", description: "Independent research collective studying bonding curves and programmable financial primitives", images: ["/og-image.jpg"], }, } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ) }