Standard.site landing page built in Next.js
0

Configure Feed

Select the types of activity you want to include in your feed.

fix og images

+13
+6
app/docs/[...slug]/page.tsx
··· 63 63 description, 64 64 images: ogImage ? [`/media/${ogImage}`] : undefined, 65 65 }, 66 + twitter: { 67 + card: 'summary_large_image', 68 + title: title ? `${title} - Standard.site` : undefined, 69 + description, 70 + images: ogImage ? [`/media/${ogImage}`] : undefined, 71 + }, 66 72 } 67 73 } 68 74
+7
app/layout.tsx
··· 27 27 title: 'Standard.site - One schema. Every platform.', 28 28 description: 'Standard.site provides shared lexicons for long-form publishing on AT Protocol. Making content easier to discover, index, and move across the ATmosphere.', 29 29 metadataBase: new URL('https://standard.site'), 30 + openGraph: { 31 + images: ['/media/opengraph-image.png'], 32 + }, 33 + twitter: { 34 + card: 'summary_large_image', 35 + images: ['/media/twitter-image.png'], 36 + }, 30 37 } 31 38 32 39 export default function RootLayout({children}: Readonly<{
app/opengraph-image.png public/media/opengraph-image.png
app/twitter-image.png public/media/twitter-image.png