From 58e903b31ea75429834e434db5980fcbde3439eb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Mar 2026 13:35:01 +0000 Subject: [PATCH 1/2] Update src/app/about/page.tsx --- src/app/about/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 6c3557d..c009a9c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -10,10 +10,10 @@ import { Shield, AirVent, Shirt, StretchHorizontal, Footprints, Lock } from 'luc export default function AboutPage() { const navItems = [ - { text: "Home", href: "/" }, - { text: "Gear", href: "/gear" }, - { text: "About Us", href: "/about" }, - { text: "Contact", href: "/contact" } + { name: "Home", id: "/" }, + { name: "Gear", id: "/gear" }, + { name: "About Us", id: "/about" }, + { name: "Contact", id: "/contact" } ]; return ( @@ -44,13 +44,13 @@ export default function AboutPage() { title="Our Passion Fuels Your Ride" description="At CycleHub, we live and breathe cycling. We're dedicated to providing cyclists with the best gear, combining innovative design with superior performance. Our mission is to enhance your riding experience, whether you're a seasoned pro or just starting your journey." tag="About CycleHub" - tagAnimation="entrance-slide" + tagAnimation="slide-up" buttons={[ { text: "Our Story", href: "/about" } ]} - buttonAnimation="entrance-slide" + buttonAnimation="slide-up" imageSrc="http://img.b2bpic.net/free-photo/full-shot-women-riding-bicycles-city_23-2149041632.jpg" imageAlt="Group of cyclists gathered, sharing stories." useInvertedBackground={false} @@ -63,7 +63,7 @@ export default function AboutPage() { title="Engineered for Every Cyclist" description="From aerodynamic helmets to responsive shoes, every piece of CycleHub gear is crafted with precision and tested for durability. Ride with confidence, comfort, and control." tag="Performance & Safety" - tagAnimation="entrance-slide" + tagAnimation="slide-up" textboxLayout="default" animationType="slide-up" useInvertedBackground={true} @@ -107,7 +107,7 @@ export default function AboutPage() { title="What Our Riders Say" description="Hear from the CycleHub community about how our gear has transformed their riding experience." tag="Rider Stories" - tagAnimation="entrance-slide" + tagAnimation="slide-up" textboxLayout="default" animationType="slide-up" useInvertedBackground={true} -- 2.49.1 From 819eab06a61c819348c196acceaad59f159d7caf Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Mar 2026 13:35:02 +0000 Subject: [PATCH 2/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 5633438..81dafff 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -8,10 +8,10 @@ import Link from 'next/link'; export default function ContactPage() { const navItems = [ - { text: "Home", href: "/" }, - { text: "Gear", href: "/gear" }, - { text: "About Us", href: "/about" }, - { text: "Contact", href: "/contact" } + { name: "Home", id: "/" }, + { name: "Gear", id: "/gear" }, + { name: "About Us", id: "/about" }, + { name: "Contact", id: "/contact" } ]; return ( @@ -40,7 +40,7 @@ export default function ContactPage() {