eny.space Landingpage
1
fork

Configure Feed

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

feat(app): add a new button for checkout

Sam Sauer 1146dabc 9ae25d31

+33 -15
+33 -15
app/page.tsx
··· 31 31 you. 32 32 </p> 33 33 34 - <Link 35 - href="mailto:hello@eny.space?subject=I%27d%20like%20early%20access%20to%20eny.space%20PDS" 36 - style={{ 37 - display: "inline-block", 38 - padding: "12px 24px", 39 - borderRadius: 6, 40 - marginTop: 16, 41 - backgroundColor: "#000000", 42 - color: "#ffffff", 43 - border: "1px solid #ffffff", 44 - textDecoration: "none", 45 - fontWeight: 600, 46 - }} 34 + <div 35 + style={{ display: "flex", gap: 12, marginTop: 24, flexWrap: "wrap" }} 47 36 > 48 - Request early access 49 - </Link> 37 + <Link 38 + href="mailto:hello@eny.space?subject=I%27d%20like%20early%20access%20to%20eny.space%20PDS" 39 + style={{ 40 + display: "inline-block", 41 + padding: "12px 24px", 42 + borderRadius: 6, 43 + backgroundColor: "#000000", 44 + color: "#ffffff", 45 + border: "1px solid #ffffff", 46 + textDecoration: "none", 47 + fontWeight: 600, 48 + }} 49 + > 50 + Request early access 51 + </Link> 52 + <Link 53 + href="/checkout" 54 + style={{ 55 + display: "inline-block", 56 + padding: "12px 24px", 57 + borderRadius: 6, 58 + backgroundColor: "#ffffff", 59 + color: "#000000", 60 + border: "1px solid #ffffff", 61 + textDecoration: "none", 62 + fontWeight: 600, 63 + }} 64 + > 65 + Get yours 66 + </Link> 67 + </div> 50 68 </main> 51 69 ); 52 70 }