From 5b657858bfed4e3e556a055f7192bf5dab4389f9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 17:55:05 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 146 +++++++++++++++++++++++++++++------------------ 1 file changed, 91 insertions(+), 55 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6e7a7b6..c583a82 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; @@ -38,39 +38,53 @@ export default function HomePage() { brandName="Montana Banks" navItems={navItems} button={{ - text: "Shop Now", href: "/shop"}} + text: "Shop Now", href: "/shop" + }} />
-
@@ -103,40 +123,49 @@ export default function HomePage() {
@@ -173,11 +206,12 @@ export default function HomePage() { -- 2.49.1 From 3f022465f96a9f279d38df6923dfdd71fad44a92 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 17:55:06 +0000 Subject: [PATCH 2/2] Update src/app/product/page.tsx --- src/app/product/page.tsx | 100 +++++++++++++++++++++++---------------- 1 file changed, 60 insertions(+), 40 deletions(-) diff --git a/src/app/product/page.tsx b/src/app/product/page.tsx index 2c56f01..9bf78cc 100644 --- a/src/app/product/page.tsx +++ b/src/app/product/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; import ContactCTA from "@/components/sections/contact/ContactCTA"; @@ -30,35 +30,47 @@ export default function ProductPage() { navItems={[ { name: "Shop Shoes", id: "shoes" }, { name: "Shop Clothing", id: "clothing" }, - { name: "About", id: "/about" }, + { name: "About", id: "about" }, { name: "Contact", id: "contact" }, { name: "Instagram", id: "https://instagram.com" }, ]} button={{ - text: "Shop Now", href: "#products"}} + text: "Shop Now", href: "#products" + }} />
-
@@ -66,26 +78,32 @@ export default function ProductPage() {