basically just your average cs student slop site schtormm.nl
0
fork

Configure Feed

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

add links

+52
+52
app/links/page.tsx
··· 1 + export default function Home() { 2 + return ( 3 + <main> 4 + <div className="bg-gray-50 dark:bg-gray-950 min-h-[100dvh]"> 5 + <div className="flex flex-col items-center justify-center gap-4 pt-10"> 6 + <h1 className="text-3xl text-center dark:text-white"> 7 + Links and profiles 8 + </h1> 9 + <p className="text-center dark:text-white"> 10 + If you need to send me a message, here's a few platforms to do that 11 + on! 12 + </p> 13 + <a 14 + className="dark:text-white text-xl px-5 py-2 bg-gray-400 rounded-md" 15 + href="https://github.com/schtormm" 16 + > 17 + <span> 18 + <i></i>GitHub 19 + </span> 20 + </a> 21 + <a 22 + className="dark:text-white text-xl px-5 py-2 bg-sky-400 rounded-md" 23 + href="https://bsky.schtormm.nl" 24 + id="bluesky" 25 + > 26 + <span> 27 + <i></i>BlueSky 28 + </span> 29 + </a> 30 + <a 31 + className="dark:text-white text-xl px-5 py-2 bg-slate-400 rounded-md" 32 + href="https://mas.to/@storm" 33 + id="mastodon" 34 + > 35 + <span> 36 + <i></i>Mastodon 37 + </span> 38 + </a> 39 + <a 40 + className="dark:text-white text-xl px-5 py-2 bg-slate-600 rounded-md" 41 + href="https://twitter.com/schtormm" 42 + id="twitter" 43 + > 44 + <span> 45 + <i></i>Twitter 46 + </span> 47 + </a> 48 + </div> 49 + </div> 50 + </main> 51 + ); 52 + }