From 44840be980bbeaa8e7f3a8d739f1f07fb6e73453 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:17:12 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 84 ++++++++++++------------------------------ 1 file changed, 24 insertions(+), 60 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2dec65b..58637ce 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -10,6 +10,13 @@ import { Mail } from "lucide-react"; import Link from "next/link"; export default function AboutPage() { + const navItems = [ + { name: "Shop Shoes", id: "/shop" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Instagram", id: "https://instagram.com" }, + ]; + return ( @@ -44,18 +43,11 @@ export default function AboutPage() { Date: Tue, 10 Mar 2026 20:17:12 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 36 ++++++++++++++---------------------- 1 file changed, 14 insertions(+), 22 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index cad946c..cac0f79 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -8,6 +8,13 @@ import Link from "next/link"; import { Mail } from "lucide-react"; export default function ContactPage() { + const navItems = [ + { name: "Shop Shoes", id: "/shop" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Instagram", id: "https://instagram.com" }, + ]; + return ( @@ -43,16 +42,13 @@ export default function ContactPage() { tag="Get in Touch" tagIcon={Mail} title="Ready to Connect with Montana Banks?" - description="Have questions about our products or need styling advice? Our team is here to help. Reach out to us through the form below or visit us on social media for the latest updates and inspiration." + description="Have questions about our shoes or need styling advice? Our team is here to help. Reach out to us through the form below or visit us on social media for the latest updates and inspiration." buttons={[ { - text: "Send Message", - href: "mailto:hello@montanabanks.com", - }, + text: "Send Message", href: "mailto:hello@montanabanks.com"}, ]} background={{ - variant: "plain", - }} + variant: "plain"}} useInvertedBackground={false} /> @@ -61,13 +57,9 @@ export default function ContactPage() { From aaae42e37a2327c2208ddd2209ecea34a4ae2c9f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:17:12 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 94 +++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 58 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6e7a7b6..a5051ad 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,7 +5,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; -import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; @@ -13,10 +12,9 @@ import { Sparkles, Grid, Mail } from "lucide-react"; export default function HomePage() { const navItems = [ - { name: "Shop Shoes", id: "shoes" }, - { name: "Shop Clothing", id: "clothing" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Shop Shoes", id: "/shop" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, { name: "Instagram", id: "https://instagram.com" }, ]; @@ -44,22 +42,20 @@ export default function HomePage() {
-
- -
-
@@ -173,8 +151,8 @@ export default function HomePage() { Date: Tue, 10 Mar 2026 20:17:13 +0000 Subject: [PATCH 4/5] Update src/app/product/page.tsx --- src/app/product/page.tsx | 64 ++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/src/app/product/page.tsx b/src/app/product/page.tsx index 2c56f01..8ceb4a6 100644 --- a/src/app/product/page.tsx +++ b/src/app/product/page.tsx @@ -11,6 +11,13 @@ import { Sparkles, Grid, Mail } from "lucide-react"; import Link from "next/link"; export default function ProductPage() { + const navItems = [ + { name: "Shop Shoes", id: "/shop" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Instagram", id: "https://instagram.com" }, + ]; + return (
Date: Tue, 10 Mar 2026 20:17:13 +0000 Subject: [PATCH 5/5] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 97 ++++++++++--------------------------------- 1 file changed, 23 insertions(+), 74 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index e6637cc..b8ae6c7 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -10,10 +10,9 @@ import { Mail } from "lucide-react"; export default function ShopPage() { const navItems = [ - { name: "Shop Shoes", id: "shoes" }, - { name: "Shop Clothing", id: "clothing" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Shop Shoes", id: "/shop" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, { name: "Instagram", id: "https://instagram.com" }, ]; @@ -35,82 +34,38 @@ export default function ShopPage() { brandName="Montana Banks" navItems={navItems} button={{ - text: "Shop Now", - href: "/shop", - }} + text: "Shop Now", href: "/shop"}} />
@@ -119,13 +74,11 @@ export default function ShopPage() {