Add Open Graph and Twitter Card metadata for social sharing
- Add og-image.jpg (1200x630) for link previews - Add metadataBase, openGraph, and twitter metadata to layout.tsx 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
e1ac6e4c33
commit
f0c5df1d86
|
|
@ -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({
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
Loading…
Reference in New Issue