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() { @@ -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() { 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() {
@@ -119,13 +74,11 @@ export default function ShopPage() {