cofi/app/layout.tsx

45 lines
1.2 KiB
TypeScript

import type React from "react"
import type { Metadata } from "next"
import { Geist, Geist_Mono } from "next/font/google"
import "./globals.css"
const _geist = Geist({ subsets: ["latin"] })
const _geistMono = Geist_Mono({ subsets: ["latin"] })
export const metadata: Metadata = {
metadataBase: new URL("https://crypto-commons.org/cofi4-payment"),
title: "CoFi 2026 — Registration",
description:
"Register for CoFi 2026 — Collaborative Finance. Reimagining finance for the commons.",
icons: {
icon: [
{
url: 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" fontSize="90">🤝</text></svg>',
},
],
},
openGraph: {
title: "CoFi 2026 — Registration",
description:
"Register for CoFi 2026 — Collaborative Finance. Reimagining finance for the commons.",
url: "https://crypto-commons.org/cofi4-payment",
siteName: "CoFi",
locale: "en_US",
type: "website",
},
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<body className={`font-sans antialiased`}>
{children}
</body>
</html>
)
}