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 ( - + -
- -
+
+ +
-
- -
+
+ +
- +
);