import type React from "react" import type { Metadata } from "next" import { Inter, JetBrains_Mono } from "next/font/google" import "./globals.css" const inter = Inter({ subsets: ["latin"], variable: "--font-sans", }) const jetBrainsMono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-mono", }) export const metadata: Metadata = { metadataBase: new URL("https://crypto-commons.org"), title: "Crypto Commons Association", description: "Actively promoting the development of digital common goods and infrastructure in distributed ledger technology", generator: "v0.app", icons: { icon: "data:image/svg+xml,🌐", }, openGraph: { title: "Crypto Commons Association", description: "Actively promoting the development of digital common goods and infrastructure in distributed ledger technology", url: "https://crypto-commons.org", siteName: "Crypto Commons Association", images: [ { url: "/og-image.jpg", width: 1200, height: 630, alt: "Crypto Commons Association", }, ], locale: "en_US", type: "website", }, twitter: { card: "summary_large_image", title: "Crypto Commons Association", description: "Actively promoting the development of digital common goods and infrastructure in distributed ledger technology", images: ["/og-image.jpg"], }, } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ) }