this repo has no description
0
fork

Configure Feed

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

favicon meta etc

alice 9ea9cccf b1f290d0

+38 -4
public/revolving-hearts.png

This is a binary file and will not be displayed.

+38 -4
src/app/likebomb/page.tsx
··· 1 - export const metadata = { 2 - title: 'Bluesky Like Bomb', 3 - description: 'A way to like all posts in a thread easily.', 4 - }; 1 + import type { Metadata } from 'next'; 2 + 3 + export function generateMetadata(): Metadata { 4 + const title = `Bluesky Like Bomb`; 5 + const description = 'A way to like all posts in a thread easily.'; 6 + const icon = '/revolving-hearts.png'; 7 + const absoluteUrl = `https://likebomb.bsky.sh`; 8 + const absoluteIconUrl = `https://bsky.sh${icon}`; 9 + 10 + return { 11 + title: title, 12 + description: description, 13 + icons: { 14 + icon: icon, 15 + apple: icon, 16 + shortcut: icon, 17 + }, 18 + openGraph: { 19 + title: title, 20 + description: description, 21 + url: absoluteUrl, 22 + siteName: title, 23 + images: [ 24 + { 25 + url: absoluteIconUrl, 26 + }, 27 + ], 28 + }, 29 + twitter: { 30 + card: 'summary', 31 + site: absoluteUrl, 32 + title: title, 33 + description: description, 34 + creator: '@alice.bsky.sh', 35 + images: absoluteIconUrl, 36 + }, 37 + }; 38 + } 5 39 6 40 export default function Page() { 7 41 return (