this repo has no description
0
fork

Configure Feed

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

siiiiiiigh

alice 465f6204 315f7969

+10 -3
+10 -3
src/app/page.tsx
··· 1 1 import Image from 'next/image'; 2 - import Link from 'next/link'; 2 + // import Link from 'next/link'; 3 + import { headers } from 'next/headers'; 3 4 4 5 export const metadata = { 5 6 title: 'bsky.sh', 6 7 description: 'bsky.sh', 7 8 }; 8 9 10 + const host = headers().get('host'); 11 + const protocol = headers().get('x-forwarded-proto'); 12 + 9 13 export default function Page() { 10 14 return ( 11 15 <> 12 16 <div className="main"> 13 - <Link href="https://likebomb.bsky.sh">๐Ÿ’ž like bomb bookmarklet ๐Ÿ’ž</Link> 17 + {/* <Link href="https://likebomb.bsky.sh">๐Ÿ’ž like bomb bookmarklet ๐Ÿ’ž</Link> 14 18 <Link href="https://showall.bsky.sh">๐Ÿ™ˆ show all bookmarklet ๐Ÿ™ˆ</Link> 15 - <Link href="https://alice.bsky.sh">me</Link> 19 + <Link href="https://alice.bsky.sh">me</Link> */} 20 + <a href={`${protocol}://likebomb.${host}`}>๐Ÿ’ž like bomb bookmarklet ๐Ÿ’ž</a> 21 + <a href={`${protocol}://showall.${host}`}>๐Ÿ™ˆ show all bookmarklet ๐Ÿ™ˆ</a> 22 + <a href={`${protocol}://alice.${host}`}>me</a> 16 23 </div> 17 24 <footer> 18 25 <Image src="/underconstruction.gif" width={459} height={51} alt="under construction" />