Update src/app/page.tsx

This commit is contained in:
2026-02-23 13:40:20 +00:00
parent 58a23d5d53
commit c4c16d8cea

View File

@@ -1,7 +1,6 @@
"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Clock, Sparkles } from "lucide-react";
export default function LandingPage() {
return (
@@ -17,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>
);
}