this repo has no description
0
fork

Configure Feed

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

does this fix unfurls?

alice 71e03def b94efc12

+32 -3
src/app/[name]/opengraph-image.png

This is a binary file and will not be displayed.

+32 -3
src/app/[name]/page.tsx
··· 6 6 } 7 7 8 8 export function generateMetadata({ params }: { params: person }): Metadata { 9 + const title = `${params.name}.bsky.sh`; 10 + const description = 'nothing to see here'; 11 + const icon = '/nope.png'; 12 + const absoluteUrl = `https://${params.name}.bsky.sh`; 13 + const absoluteIconUrl = `https://bsky.sh${icon}`; 14 + 9 15 return { 10 - title: `${params.name}.bsky.sh`, 11 - description: 'nothing to see here', 12 - icons: '/nope.png', 16 + title: title, 17 + description: description, 18 + icons: { 19 + icon: icon, 20 + apple: icon, 21 + shortcut: icon, 22 + }, 23 + openGraph: { 24 + title: title, 25 + description: description, 26 + url: absoluteUrl, 27 + siteName: title, 28 + images: [ 29 + { 30 + url: absoluteIconUrl, 31 + }, 32 + ], 33 + }, 34 + twitter: { 35 + card: 'summary_large_image', 36 + site: absoluteUrl, 37 + title: title, 38 + description: description, 39 + creator: '@alice.bsky.sh', 40 + images: absoluteIconUrl, 41 + }, 13 42 }; 14 43 } 15 44
src/app/[name]/twitter-image.png

This is a binary file and will not be displayed.