55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
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,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📈</text></svg>",
|
|
},
|
|
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 (
|
|
<html lang="en">
|
|
<body className={`${inter.className} antialiased`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|