From 645cda3566c6ce847ea44ee129f3877a324e5f52 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 00:44:24 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 50 +++++++++++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6a10321..926fd83 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,21 +34,23 @@ export default function LandingPage() { @@ -57,8 +59,8 @@ export default function LandingPage() { background={{ variant: "downward-rays-animated"}} imagePosition="right" - title="Bill Will" - description="Honest leadership for every corner of Milpitas" + title="BILL CHUAN" + description="Milpitas City Council" tag="Listen · Lead · Deliver · Serve" tagAnimation="slide-up" 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: [ { - 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: [ { - 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: [ { - 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: [ { - 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." buttons={[ { - text: "Contact Us", href: "#contact"}, + text: "Contact Us", href: "/#contact"}, ]} buttonAnimation="slide-up" faqsAnimation="slide-up" @@ -284,31 +286,31 @@ export default function LandingPage() { { 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: [ { - 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: [ { - 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"}, ], }, ]} @@ -318,4 +320,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file From aa548187e8cf74235a66b565dc78fbef8f7c68b8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 00:44:24 +0000 Subject: [PATCH 2/2] Add src/app/privacy-policy/page.tsx --- src/app/privacy-policy/page.tsx | 130 ++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 src/app/privacy-policy/page.tsx diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx new file mode 100644 index 0000000..dc46f52 --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,130 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import LegalSection from '@/components/legal/LegalSection'; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "About Bill", id: "/#about" }, + { name: "Platform", id: "/#platform" }, + { name: "Impact", id: "/#impact" }, + { name: "Support", id: "/#support" }, + { name: "FAQ", id: "/#faq" }, + { name: "Privacy Policy", id: "/privacy-policy" }, +]; + +const footerColumns = [ + { + items: [ + { label: "About Bill", href: "/#about" }, + { label: "Platform", href: "/#platform" }, + { label: "Impact", href: "/#impact" }, + ], + }, + { + items: [ + { label: "Testimonials", href: "/#testimonials" }, + { label: "FAQ", href: "/#faq" }, + { label: "Volunteer", href: "/#contact" }, + ], + }, + { + items: [ + { label: "Donate", href: "/#donate" }, + { label: "Contact Us", href: "/#contact" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + ], + }, +]; + +export default function PrivacyPolicyPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file