5 Commits

Author SHA1 Message Date
c490fbe0f4 Update src/app/page.tsx 2026-05-26 01:03:28 +00:00
b34469c57f Update src/app/page.tsx 2026-05-26 01:02:56 +00:00
142253fd29 Merge version_2 into main
Merge version_2 into main
2026-05-26 01:00:44 +00:00
3c490cde43 Update src/app/page.tsx 2026-05-26 01:00:41 +00:00
9473e327a6 Merge version_1 into main
Merge version_1 into main
2026-05-26 00:51:12 +00:00

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import MediaAbout from '@/components/sections/about/MediaAbout';
@@ -12,7 +12,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Cake, Coffee, Cog, Heart, Home, Smile, Sparkles, Star, Wifi } from "lucide-react";
import { Cake, Coffee, Heart, Home, Smile, Sparkles, Star, Wifi } from "lucide-react";
export default function LandingPage() {
return (
@@ -73,7 +73,7 @@ export default function LandingPage() {
{
text: "View Menu", href: "#menu"},
]}
imageSrc="http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520113.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EEv9KAQUsqhLqoA3HhRE04ikoM/uploaded-1779757202687-4czshi3y.jpg"
imageAlt="Cozy cafe interior with coffee and pastries"
mediaAnimation="blur-reveal"
tagIcon={Sparkles}
@@ -115,26 +115,26 @@ export default function LandingPage() {
useInvertedBackground={true}
title="Our Story: Brooklyn's Favorite Cozy Cafe"
description="Nestled in the heart of Brooklyn, Cafe Bazaar is more than just a coffee shop it's a community hub. We pride ourselves on creating a warm, inviting atmosphere where every visit feels like coming home. From freshly brewed artisanal coffees to delectable homemade pastries, we craft every item with passion and care. Come experience the charm and comfort that makes us a neighborhood gem."
imageSrc="http://img.b2bpic.net/free-photo/romantic-date-couple-love-cafe-happy-couple-love-enjoying-romantic-moment_8353-6650.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EEv9KAQUsqhLqoA3HhRE04ikoM/uploaded-1779757202687-s2ztw1ds.jpg"
imageAlt="Inviting interior of Cafe Bazaar with comfortable seating"
/>
</div>
<div id="menu" data-section="menu">
<FeatureHoverPattern
<FeatureCardTwelve
animationType="scale-rotate"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
icon: Coffee,
title: "Artisanal Coffee & Lattes", description: "Expertly brewed coffee, espresso drinks, and lattes crafted with passion."},
id: "f1", label: "Artisanal Coffee & Lattes", title: "Artisanal Coffee & Lattes", items: ["Expertly brewed coffee, espresso drinks, and lattes crafted with passion."],
},
{
icon: Cake,
title: "Freshly Baked Pastries", description: "Indulge in our selection of muffins, cakes, croissants, and other delightful treats."},
id: "f2", label: "Freshly Baked Pastries", title: "Freshly Baked Pastries", items: ["Indulge in our selection of muffins, cakes, croissants, and other delightful treats."],
},
{
icon: Cog,
title: "Refreshing Smoothies", description: "Healthy and delicious fruit smoothies, perfect for a quick energy boost."},
id: "f3", label: "Refreshing Smoothies", title: "Refreshing Smoothies", items: ["Healthy and delicious fruit smoothies, perfect for a quick energy boost."],
},
]}
title="Taste the Craft: Our Signature Offerings"
description="Explore a delightful range of beverages and baked goods, meticulously prepared to brighten your day. Whether you crave a rich coffee or a sweet treat, we have something special for everyone."
@@ -300,4 +300,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}