From 4469a7d6dda9ab7e4c34530c4b7e5302b9ed97e1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 16:43:00 +0000 Subject: [PATCH] Update src/app/wardrobes/page.tsx --- src/app/wardrobes/page.tsx | 273 +++++++++++++++---------------------- 1 file changed, 110 insertions(+), 163 deletions(-) diff --git a/src/app/wardrobes/page.tsx b/src/app/wardrobes/page.tsx index e33c899..20ecfa5 100644 --- a/src/app/wardrobes/page.tsx +++ b/src/app/wardrobes/page.tsx @@ -6,9 +6,34 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import FooterCard from '@/components/sections/footer/FooterCard'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import SplitAbout from '@/components/sections/about/SplitAbout'; -import { Clock, Facebook, Image, Instagram, MessageCircle, Palette, Wrench } from "lucide-react"; +// Ensuring all necessary Lucide icons are imported for this page +import { CheckCircle, ClipboardCheck, Clock, DraftingCompass, Facebook, Handshake, Image, Instagram, MessageCircle, Palette, Wrench } from "lucide-react"; export default function LandingPage() { + const navItems = [ + { + name: "Home", id: "/" + }, + { + name: "Kitchens", id: "/kitchens" + }, + { + name: "Bathrooms", id: "/bathrooms" + }, + { + name: "Renovations", id: "/renovations" + }, + { + name: "Wardrobes", id: "/wardrobes" + }, + { + name: "Projects", id: "/projects" + }, + { + name: "About", id: "/about" + } + ]; + return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
);