Update src/app/page.tsx

This commit is contained in:
2026-05-26 01:49:35 +00:00
parent 45dcb14774
commit e7767ca744

View File

@@ -57,7 +57,7 @@ export default function LandingPage() {
{
text: "Join the Elite", href: "#contact"},
{
text: "View Roadmap", href: "#"},
text: "View Roadmap", href: "#features"},
]}
slides={[
{
@@ -230,6 +230,7 @@ export default function LandingPage() {
inputPlaceholder="Enter your email"
buttonText="Get Started Now"
termsText="By clicking Get Started Now you're confirming that you agree with our Terms and Conditions."
onSubmit={(email) => alert(`Signed up with: ${email}`)}
/>
</div>
@@ -248,7 +249,7 @@ export default function LandingPage() {
{
label: "Investor Relations", href: "#metrics"},
{
label: "Roadmap", href: "#"},
label: "Roadmap", href: "#features"},
],
},
{
@@ -256,21 +257,21 @@ export default function LandingPage() {
{
label: "About Us", href: "#about"},
{
label: "Press Kit", href: "#"},
label: "Press Kit", href: "#about"},
{
label: "Careers", href: "#"},
label: "Careers", href: "#about"},
{
label: "Support", href: "#"},
label: "Support", href: "#contact"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
label: "Privacy Policy", onClick: () => alert("Navigating to Privacy Policy...")},
{
label: "Terms of Service", href: "#"},
label: "Terms of Service", onClick: () => alert("Navigating to Terms of Service...")},
{
label: "Cookie Policy", href: "#"},
label: "Cookie Policy", onClick: () => alert("Navigating to Cookie Policy...")},
],
},
]}