this repo has no description
0
fork

Configure Feed

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

update

alice bd3926a6 a886225d

+15 -9
+5 -5
src/app/globals.css
··· 20 20 } 21 21 22 22 .main { 23 - display: flex; 23 + /* display: flex; 24 24 flex-direction: column; 25 25 align-items: left; 26 - justify-content: top; 27 - height: 90vh; 26 + justify-content: top; */ 27 + height: 100dvh; 28 28 } 29 29 30 - footer { 30 + /* footer { 31 31 display: flex; 32 32 flex-direction: column; 33 33 align-items: center; 34 34 justify-content: center; 35 35 height: 10vh; 36 - } 36 + } */
+10 -4
src/app/page.tsx
··· 14 14 <> 15 15 <div className="main"> 16 16 <h1>My Bluesky things</h1> 17 - <Link href={`${protocol}://alice.${host}`}>@alice.bsky.sh</Link> (me) 17 + <Link href={`${protocol}://alice.${host}`}>@alice.bsky.sh</Link>&nbsp;(me) 18 18 <h2>Bookmarklets:</h2> 19 19 <Link href={`${protocol}://likebomb.${host}`}>๐Ÿ’ž like bomb bookmarklet ๐Ÿ’ž</Link> 20 + <br /> 20 21 <Link href={`${protocol}://showall.${host}`}>๐Ÿ™ˆ show all bookmarklet ๐Ÿ™ˆ</Link> 21 22 <h2>Bluesky Labelers:</h2> 22 23 <Link href={`${protocol}://sortinghat.${host}`}>sorting hat bluesky labeler</Link> 24 + <br /> 23 25 <Link href={`${protocol}://zodiacsigns.${host}`}>zodiac signs bluesky labeler</Link> 24 26 <h2>Other projects:</h2> 25 - <Link href={`https://emojistats.bsky.sh`}>Emoji Stats for Bluesky</Link> <b>(New!)</b> 27 + <Link href={`https://emojistats.bsky.sh`}> 28 + Emoji Stats for Bluesky 29 + </Link>&nbsp;<b>(New!)</b> 30 + <br /> 31 + 26 32 <Link href={`https://bluesky-heatmap.fly.dev`}>Bluesky Posts Heatmap Generator</Link> 27 33 </div> 28 - <footer> 34 + {/* <footer> 29 35 <Image src="/underconstruction.gif" width={459} height={51} alt="under construction" /> 30 - </footer> 36 + </footer> */} 31 37 </> 32 38 ); 33 39 }