Update src/app/page.tsx

This commit is contained in:
2026-03-27 10:53:56 +00:00
parent 23b2bd6032
commit e028230e0f

View File

@@ -19,42 +19,30 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="hero" data-section="hero">
<HeroPersonalLinks
background="canvas-reveal"
title="Your Money. Unchained."
linkCards={[
{
title: "Get Started",
description: "Join the neobank ecosystem.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWEhYdr3pDaQGJZWYl46mXO9ek/a-deep-black-background-with-a-flowing-f-1774608810650-e99deed8.png?_wi=1",
button: {
label: "Start Now",
variant: "gradient",
},
},
{
title: "Read Docs",
description: "Learn about our protocol.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWEhYdr3pDaQGJZWYl46mXO9ek/a-cinematic-dark-backdrop-with-glowing-o-1774608808619-dfbbc761.png",
button: {
label: "Explore",
variant: "secondary",
},
},
{
title: "Launch App",
description: "Access your private bank.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWEhYdr3pDaQGJZWYl46mXO9ek/a-deep-black-background-with-a-flowing-f-1774608810650-e99deed8.png?_wi=2",
button: {
label: "Connect",
variant: "secondary",
},
},
]}
/>
</div>
<div id="hero" data-section="hero">
<HeroPersonalLinks
background={{ variant: "canvas-reveal" }}
title="Your Money. Unchained."
linkCards={[
{
title: "Get Started", description: "Join the neobank ecosystem.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWEhYdr3pDaQGJZWYl46mXO9ek/a-deep-black-background-with-a-flowing-f-1774608810650-e99deed8.png", button: {
text: "Start Now", props: { variant: "gradient" }
},
},
{
title: "Read Docs", description: "Learn about our protocol.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWEhYdr3pDaQGJZWYl46mXO9ek/a-cinematic-dark-backdrop-with-glowing-o-1774608808619-dfbbc761.png", button: {
text: "Explore", props: { variant: "secondary" }
},
},
{
title: "Launch App", description: "Access your private bank.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWEhYdr3pDaQGJZWYl46mXO9ek/a-deep-black-background-with-a-flowing-f-1774608810650-e99deed8.png", button: {
text: "Connect", props: { variant: "secondary" }
},
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}