From 3df8fa0dd21ce69d95aff2cf69ded8349d63ffad Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 19:12:07 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7d54424..4ef1323 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,11 +4,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; import TextAbout from "@/components/sections/about/TextAbout"; -import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; +import BlogCardOne from "@/components/sections/blog/BlogCardOne"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Bike, Heart, Wrench, Star, Smile } from "lucide-react"; +import { Bike, Heart, Star, Smile } from "lucide-react"; export default function LandingPage() { return ( @@ -29,7 +29,7 @@ export default function LandingPage() { brandName="Bike Way" navItems={[ { name: "About", id: "about" }, - { name: "Services", id: "services" }, + { name: "Gallery", id: "gallery" }, { name: "Why Us", id: "testimonials" }, { name: "Contact", id: "contact" } ]} @@ -46,7 +46,7 @@ export default function LandingPage() { tagIcon={Bike} tagAnimation="slide-up" buttons={[ - { text: "Shop Bikes", href: "#services" }, + { text: "Shop Bikes", href: "#gallery" }, { text: "Book a Service", href: "#contact" }, { text: "Rent a Bike", href: "#contact" } ]} @@ -64,7 +64,7 @@ export default function LandingPage() { tagAnimation="slide-up" title="Bike Way isn't just a bike shop — it's a place where passion meets precision." buttons={[ - { text: "Learn More About Our Expertise", href: "#services" } + { text: "Learn More About Our Expertise", href: "#gallery" } ]} buttonAnimation="blur-reveal" useInvertedBackground={false} @@ -72,31 +72,30 @@ export default function LandingPage() { /> -
- +
@@ -198,16 +197,16 @@ export default function LandingPage() { columns={[ { title: "Shop", items: [ - { label: "Bikes", href: "#services" }, - { label: "Rentals", href: "#services" }, + { label: "Bikes", href: "#gallery" }, + { label: "Rentals", href: "#gallery" }, { label: "Accessories", href: "#contact" } ] }, { title: "Services", items: [ - { label: "Repairs", href: "#services" }, - { label: "Maintenance", href: "#services" }, - { label: "Fitting", href: "#services" } + { label: "Repairs", href: "#gallery" }, + { label: "Maintenance", href: "#gallery" }, + { label: "Fitting", href: "#gallery" } ] }, {