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.

fix(layout): rip overflow

Sam Sauer 443b4bcd f724057c

+2 -2
+2 -2
app/page.tsx
··· 11 11 12 12 export default function Home() { 13 13 return ( 14 - <> 14 + <div className="overflow-x-hidden"> 15 15 <Nav /> 16 16 <main className="relative z-10"> 17 17 <Hero /> ··· 28 28 <Footer /> 29 29 </div> 30 30 </div> 31 - </> 31 + </div> 32 32 ); 33 33 }