diff --git a/app/layout.tsx b/app/layout.tsx index 89c852f..3df501d 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,7 +1,6 @@ import type React from "react" import type { Metadata } from "next" import { Inter, JetBrains_Mono } from "next/font/google" -import { Analytics } from "@vercel/analytics/next" import "./globals.css" const inter = Inter({ @@ -14,26 +13,37 @@ const jetBrainsMono = JetBrains_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: [ + 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: "/icon-light-32x32.png", - media: "(prefers-color-scheme: light)", - }, - { - url: "/icon-dark-32x32.png", - media: "(prefers-color-scheme: dark)", - }, - { - url: "/icon.svg", - type: "image/svg+xml", + url: "/og-image.jpg", + width: 1200, + height: 630, + alt: "Crypto Commons Association", }, ], - apple: "/apple-icon.png", + 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"], }, } @@ -46,7 +56,6 @@ export default function RootLayout({ {children} - ) diff --git a/public/og-image.jpg b/public/og-image.jpg new file mode 100644 index 0000000..3c55ab5 Binary files /dev/null and b/public/og-image.jpg differ