diff --git a/src/app/page.tsx b/src/app/page.tsx
index ca9abaf..d46f40a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,17 +1,6 @@
"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import { Clock, Sparkles } from "lucide-react";
-
-// Missing import for NavbarStyleFullscreen - component not found in registry
-// Missing import for HeroOverlay - component not found in registry
-// Missing import for MediaAbout - component not found in registry
-// Missing import for FeatureCardMedia - component not found in registry
-// Missing import for ProductCardOne - component not found in registry
-// Missing import for TestimonialCardOne - component not found in registry
-// Missing import for FaqBase - component not found in registry
-// Missing import for ContactSplitForm - component not found in registry
-// Missing import for FooterMedia - component not found in registry
export default function LandingPage() {
return (
@@ -27,7 +16,16 @@ export default function LandingPage() {
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
- {/* All sections skipped due to missing component imports */}
+
+
+
Welcome to Warm & Crumbly Bakery
+
Artisan breads and pastries made with love
+
+
+
);
}
\ No newline at end of file
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index 21adc11..a318b8f 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -4,7 +4,7 @@ import { Suspense, use, useCallback } from "react";
import { useRouter } from "next/navigation";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard";
import ProductCart from "@/components/ecommerce/cart/ProductCart";
import { useProductDetail } from "@/hooks/useProductDetail";
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index 549861d..46969db 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -3,7 +3,7 @@
import { Suspense } from "react";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
import { useProductCatalog } from "@/hooks/useProductCatalog";