3 Commits

Author SHA1 Message Date
e7767ca744 Update src/app/page.tsx 2026-05-26 01:49:35 +00:00
45dcb14774 Merge version_1 into main
Merge version_1 into main
2026-05-26 01:47:38 +00:00
3b91bbf6f8 Merge version_1 into main
Merge version_1 into main
2026-05-26 01:46:56 +00:00

View File

@@ -57,7 +57,7 @@ export default function LandingPage() {
{ {
text: "Join the Elite", href: "#contact"}, text: "Join the Elite", href: "#contact"},
{ {
text: "View Roadmap", href: "#"}, text: "View Roadmap", href: "#features"},
]} ]}
slides={[ slides={[
{ {
@@ -230,6 +230,7 @@ export default function LandingPage() {
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email"
buttonText="Get Started Now" buttonText="Get Started Now"
termsText="By clicking Get Started Now you're confirming that you agree with our Terms and Conditions." 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> </div>
@@ -248,7 +249,7 @@ export default function LandingPage() {
{ {
label: "Investor Relations", href: "#metrics"}, 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: "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: [ 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...")},
], ],
}, },
]} ]}