The source code for our eny.social landing page, which is mirrored in a different repository as part of the CI setup. eny.social
social-network eny local-first
2
fork

Configure Feed

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

refactor(Footer): improve mobile variant

Sam Sauer 3973547d 1180dd33

+4 -4
+4 -4
app/components/Footer.tsx
··· 7 7 export default function Footer() { 8 8 return ( 9 9 <footer className="px-6 py-8"> 10 - <div className="mx-auto grid max-w-[1536px] grid-cols-3 items-center gap-6 px-6"> 10 + <div className="mx-auto grid max-w-[1536px] grid-cols-2 lg:grid-cols-3 items-center gap-6 px-6"> 11 11 {/* Links */} 12 12 <NavMenu 13 13 items={[ ··· 21 21 /> 22 22 23 23 {/* Social icons */} 24 - <div className="flex items-center justify-center gap-4"> 24 + <div className="flex items-center justify-end lg:justify-center gap-4"> 25 25 <FadeIn delay={320}> 26 26 <a 27 27 href="https://bsky.app/profile/eny.social" ··· 60 60 </div> 61 61 62 62 {/* Copyright */} 63 - <FadeIn delay={600}> 64 - <p className="text-right text-sm text-charcoal"> 63 + <FadeIn delay={600} className="col-span-2 lg:col-span-1"> 64 + <p className="text-center text-sm text-charcoal lg:text-right"> 65 65 &copy; {new Date().getFullYear()} made by krekeny in Offenbach 66 66 </p> 67 67 </FadeIn>