diff --git a/app/layout.tsx b/app/layout.tsx index e6063f5..53f8b3d 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -8,6 +8,7 @@ const _geist = Geist({ subsets: ["latin"] }) const _geistMono = Geist_Mono({ subsets: ["latin"] }) export const metadata: Metadata = { + metadataBase: new URL("https://post-app.net"), title: "Project Interlay | Post-Appitalism", description: "Weaving a post-appitalist future. Decomposing the data silos of capitalist business models.", generator: "v0.app", @@ -19,6 +20,28 @@ export const metadata: Metadata = { }, ], }, + openGraph: { + type: "website", + locale: "en_US", + url: "https://post-app.net", + title: "Project Interlay | Post-Appitalism", + description: "Weaving a post-appitalist future. Decomposing the data silos of capitalist business models.", + siteName: "Project Interlay", + images: [ + { + url: "/og-image.jpg", + width: 1200, + height: 630, + alt: "Project Interlay - Weaving a post-appitalist future", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Project Interlay | Post-Appitalism", + description: "Weaving a post-appitalist future. Decomposing the data silos of capitalist business models.", + images: ["/og-image.jpg"], + }, } export default function RootLayout({ diff --git a/public/og-image.jpg b/public/og-image.jpg new file mode 100644 index 0000000..cf25352 Binary files /dev/null and b/public/og-image.jpg differ