My landing page, written in Astro hayden.moe
0
fork

Configure Feed

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

feat: add my webring thing

+11 -1
public/88x31/hayden.png

This is a binary file and will not be displayed.

+11 -1
src/app/routes/_index.tsx
··· 40 40 </p> 41 41 </div> 42 42 43 - <div className="mt-6 max-w-5xl"> 43 + <div className="mt-6 max-w-5xl flex flex-col gap-2"> 44 44 <p className="text-[var(--base0F)] underline">Webring</p> 45 45 <div className="flex items-center gap-4"> 46 46 {frens.map((fren, idx) => ( ··· 54 54 /> 55 55 </a> 56 56 ))} 57 + </div> 58 + <div className="p-2 bg-[var(--base01)] block"> 59 + <p>Wanna add me to yours? Here's my badge!</p> 60 + <img 61 + src={`/88x31/hayden.png`} 62 + width={88} 63 + height={31} 64 + alt="Hayden" 65 + style={{ imageRendering: 'pixelated' }} 66 + /> 57 67 </div> 58 68 </div> 59 69 </>