diff --git a/src/app/page.tsx b/src/app/page.tsx index a98346c..f176154 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,8 +3,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; -import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import TestimonialAboutCard from '@/components/sections/testimonial/TestimonialAboutCard'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import TeamCardSix from '@/components/sections/team/TeamCardSix'; @@ -76,7 +76,7 @@ export default function LandingPage() {
-
- setCartOpen(true) }} /> @@ -126,7 +129,10 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Refined Barber" navItems={[ { name: "Home", id: "hero" }, - { name: "Shop", id: "/shop" } + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -173,7 +179,10 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Refined Barber" navItems={[ { name: "Home", id: "hero" }, - { name: "Shop", id: "/shop" } + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index f8c98b4..f539ff6 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -36,7 +36,10 @@ export default function ShopPage() { brandName="Refined Barber" navItems={[ { name: "Home", id: "hero" }, - { name: "Shop", id: "/shop" } + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -75,7 +78,10 @@ export default function ShopPage() { brandName="Refined Barber" navItems={[ { name: "Home", id: "hero" }, - { name: "Shop", id: "/shop" } + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} />