Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 76f981d078 | |||
| 52017a9e6e |
@@ -1,8 +1,8 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
import HeroSignup from '@/components/sections/hero/HeroSignup';
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||||
@@ -42,18 +42,22 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroSignup
|
||||||
title="Freshly Baked Goodness Every Day"
|
title="Join Our Baking Community"
|
||||||
description="Artisanal breads, pastries, and desserts crafted with love using premium ingredients. Experience the warmth of traditional baking combined with modern flavors."
|
description="Subscribe to get exclusive recipes, early access to seasonal treats, and special discounts delivered straight to your inbox."
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
tag="Baked Fresh Daily"
|
tag="Sweet Rewards Await"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/fresh-croissants-with-croissant-with-powdered-sugar-wooden-table_181624-23604.jpg"
|
inputPlaceholder="your@email.com"
|
||||||
imageAlt="Fresh baked pastries and breads"
|
buttonText="Subscribe Now"
|
||||||
buttons={[
|
onSubmit={(email) => console.log("Subscribed:", email)}
|
||||||
{ text: "Shop Now", href: "#products" },
|
ariaLabel="Newsletter signup section"
|
||||||
{ text: "Learn Our Story", href: "#about" }
|
containerClassName="bg-gradient-to-b from-amber-50 to-orange-50"
|
||||||
]}
|
titleClassName="text-4xl font-bold text-amber-900"
|
||||||
|
descriptionClassName="text-lg text-amber-800"
|
||||||
|
tagClassName="text-amber-700"
|
||||||
|
buttonClassName="bg-amber-600 hover:bg-amber-700"
|
||||||
|
buttonTextClassName="text-white font-semibold"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user