Update src/app/page.tsx

This commit is contained in:
2026-06-10 00:44:24 +00:00
parent e41a1f1f40
commit 645cda3566

View File

@@ -34,21 +34,23 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ {
name: "Home", id: "#home"}, name: "Home", id: "/"},
{ {
name: "About Bill", id: "#about"}, name: "About Bill", id: "/#about"},
{ {
name: "Platform", id: "#platform"}, name: "Platform", id: "/#platform"},
{ {
name: "Impact", id: "#impact"}, name: "Impact", id: "/#impact"},
{ {
name: "Support", id: "#support"}, name: "Support", id: "/#support"},
{ {
name: "FAQ", id: "#faq"}, name: "FAQ", id: "/#faq"},
{
name: "Privacy Policy", id: "/privacy-policy"},
]} ]}
brandName="Bill Chuan" brandName="Bill Chuan"
button={{ button={{
text: "Donate Now", href: "#donate"}} text: "Donate Now", href: "/#donate"}}
/> />
</div> </div>
@@ -57,8 +59,8 @@ export default function LandingPage() {
background={{ background={{
variant: "downward-rays-animated"}} variant: "downward-rays-animated"}}
imagePosition="right" imagePosition="right"
title="Bill Will" title="BILL CHUAN"
description="Honest leadership for every corner of Milpitas" description="Milpitas City Council"
tag="Listen · Lead · Deliver · Serve" tag="Listen · Lead · Deliver · Serve"
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
@@ -130,28 +132,28 @@ export default function LandingPage() {
{ {
id: "transparency", title: "Open Government", subtitle: "Ensuring transparency and accountability in all city decisions.", category: "Core Value", value: "Transparency", buttons: [ id: "transparency", title: "Open Government", subtitle: "Ensuring transparency and accountability in all city decisions.", category: "Core Value", value: "Transparency", buttons: [
{ {
text: "Learn More", href: "#platform" text: "Learn More", href: "/#platform"
}, },
], ],
}, },
{ {
id: "education", title: "Strong Schools", subtitle: "Advocating for better resources and support for our local schools.", category: "Priority", value: "Education", buttons: [ id: "education", title: "Strong Schools", subtitle: "Advocating for better resources and support for our local schools.", category: "Priority", value: "Education", buttons: [
{ {
text: "Learn More", href: "#platform" text: "Learn More", href: "/#platform"
}, },
], ],
}, },
{ {
id: "economy", title: "Thriving Economy", subtitle: "Fostering local businesses and creating economic opportunities for all.", category: "Growth", value: "Economy", buttons: [ id: "economy", title: "Thriving Economy", subtitle: "Fostering local businesses and creating economic opportunities for all.", category: "Growth", value: "Economy", buttons: [
{ {
text: "Learn More", href: "#platform" text: "Learn More", href: "/#platform"
}, },
], ],
}, },
{ {
id: "safety", title: "Safe Neighborhoods", subtitle: "Working with law enforcement to ensure a safe community for every family.", category: "Security", value: "Safety", buttons: [ id: "safety", title: "Safe Neighborhoods", subtitle: "Working with law enforcement to ensure a safe community for every family.", category: "Security", value: "Safety", buttons: [
{ {
text: "Learn More", href: "#platform" text: "Learn More", href: "/#platform"
}, },
], ],
}, },
@@ -234,7 +236,7 @@ export default function LandingPage() {
sideDescription="Find answers to frequently asked questions about Bill Chuan's campaign and his vision for Milpitas." sideDescription="Find answers to frequently asked questions about Bill Chuan's campaign and his vision for Milpitas."
buttons={[ buttons={[
{ {
text: "Contact Us", href: "#contact"}, text: "Contact Us", href: "/#contact"},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
faqsAnimation="slide-up" faqsAnimation="slide-up"
@@ -284,31 +286,31 @@ export default function LandingPage() {
{ {
items: [ items: [
{ {
label: "About Bill", href: "#about"}, label: "About Bill", href: "/#about"},
{ {
label: "Platform", href: "#platform"}, label: "Platform", href: "/#platform"},
{ {
label: "Impact", href: "#impact"}, label: "Impact", href: "/#impact"},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Testimonials", href: "#testimonials"}, label: "Testimonials", href: "/#testimonials"},
{ {
label: "FAQ", href: "#faq"}, label: "FAQ", href: "/#faq"},
{ {
label: "Volunteer", href: "#contact"}, label: "Volunteer", href: "/#contact"},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Donate", href: "#donate"}, label: "Donate", href: "/#donate"},
{ {
label: "Contact Us", href: "#contact"}, label: "Contact Us", href: "/#contact"},
{ {
label: "Privacy Policy", href: "#"}, label: "Privacy Policy", href: "/privacy-policy"},
], ],
}, },
]} ]}