Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 449ad87930 | |||
| 6de76094fd | |||
| afea83668a | |||
| e303f98730 |
@@ -1,14 +1,15 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
|
|
||||||
export default function BakeryPage() {
|
export default function BakeryPage() {
|
||||||
return (
|
return (
|
||||||
@@ -25,7 +26,7 @@ export default function BakeryPage() {
|
|||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Sweet Haven Bakery"
|
brandName="Sweet Haven Bakery"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "hero" },
|
{ name: "Home", id: "hero" },
|
||||||
@@ -41,19 +42,28 @@ export default function BakeryPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroOverlay
|
<HeroCentered
|
||||||
title="Freshly Baked Happiness Every Day"
|
title="Artisan Baked Goods Made Fresh Daily"
|
||||||
description="Handcrafted artisan breads, pastries, and desserts made with the finest ingredients and love. Order your favorites online and taste the difference."
|
description="Discover our selection of handcrafted breads, pastries, and custom cakes. Each item is baked with premium ingredients and passion. Order online for pickup or delivery."
|
||||||
tag="Welcome to Sweet Haven"
|
background={{ variant: "radial-gradient" }}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/woman-holding-bread-dark-table-with-eggs-flour-bowl-glass-oil_114579-22475.jpg"
|
avatars={[
|
||||||
imageAlt="Beautiful array of fresh baked goods in our bakery"
|
{ name: "Sarah", image: "https://img.b2bpic.net/free-photo/portrait-woman-baker-apron_114579-12345.jpg" },
|
||||||
textPosition="bottom-left"
|
{ name: "Emma", image: "https://img.b2bpic.net/free-photo/smiling-baker-holding-fresh-bread_114579-12346.jpg" },
|
||||||
showBlur={true}
|
{ name: "Lisa", image: "https://img.b2bpic.net/free-photo/female-baker-with-pastries_114579-12347.jpg" }
|
||||||
showDimOverlay={false}
|
|
||||||
buttons={[
|
|
||||||
{ text: "Shop Now", href: "#products" },
|
|
||||||
{ text: "Learn Our Story", href: "#about" }
|
|
||||||
]}
|
]}
|
||||||
|
avatarText="Join 500+ happy customers"
|
||||||
|
buttons={[
|
||||||
|
{ label: "Browse Products", href: "#products", dataWebildId: "btn_browse_products" },
|
||||||
|
{ label: "Order Now", href: "#order", dataWebildId: "btn_order_now" }
|
||||||
|
]}
|
||||||
|
marqueeItems={[
|
||||||
|
{ text: "Sourdough Bread", icon: "🍞" },
|
||||||
|
{ text: "Croissants", icon: "🥐" },
|
||||||
|
{ text: "Custom Cakes", icon: "🎂" },
|
||||||
|
{ text: "Pastries", icon: "🥧" }
|
||||||
|
]}
|
||||||
|
marqueeSpeed={25}
|
||||||
|
showMarqueeCard={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user