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.

refator(Footer): add another blob for the footer background

Sam Sauer 7f006a2b 21dd45a4

+9 -3
+9 -3
app/page.tsx
··· 7 7 import Waitlist from "./components/Waitlist"; 8 8 import FooterQuote from "./components/FooterQuote"; 9 9 import Footer from "./components/Footer"; 10 + import GrainedBlob from "./components/GrainedBlob"; 10 11 11 12 export default function Home() { 12 13 return ( 13 14 <> 14 15 <Nav /> 15 - <main> 16 + <main className="relative z-10"> 16 17 <Hero /> 17 18 <RememberWhen /> 18 19 <WeBelieve /> 19 20 <ValueCards /> 20 21 <StartingInOffenbach /> 21 22 <Waitlist /> 22 - <FooterQuote /> 23 23 </main> 24 - <Footer /> 24 + <div className="relative z-0 overflow-clip pt-[500px] -mt-[500px]"> 25 + <GrainedBlob className="pointer-events-none absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/8 rotate-55 z-0 w-[150%] h-auto" /> 26 + <div className="relative z-10"> 27 + <FooterQuote /> 28 + <Footer /> 29 + </div> 30 + </div> 25 31 </> 26 32 ); 27 33 }