From aaae42e37a2327c2208ddd2209ecea34a4ae2c9f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:17:12 +0000 Subject: [PATCH] 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() {