Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-02-23 13:40:25 +00:00
3 changed files with 12 additions and 14 deletions

View File

@@ -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 */}
<div className="min-h-screen flex items-center justify-center">
<div className="text-center">
<h1 className="text-4xl font-bold mb-4">Welcome to Warm & Crumbly Bakery</h1>
<p className="text-lg text-muted-foreground mb-8">Artisan breads and pastries made with love</p>
<div className="space-x-4">
<a href="/shop" className="primary-button px-6 py-3 rounded-theme text-primary-cta-text">Visit Our Shop</a>
<a href="/blog" className="secondary-button px-6 py-3 rounded-theme text-secondary-cta-text">Read Our Blog</a>
</div>
</div>
</div>
</ThemeProvider>
);
}

View File

@@ -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";

View File

@@ -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";