5 Commits

Author SHA1 Message Date
727589d5ce Update src/app/page.tsx 2026-04-26 04:01:44 +00:00
9e22a1d32e Merge version_1 into main
Merge version_1 into main
2026-04-26 03:50:13 +00:00
cab436f474 Merge version_1 into main
Merge version_1 into main
2026-04-26 03:49:44 +00:00
817dccafe4 Merge version_1 into main
Merge version_1 into main
2026-04-26 03:49:09 +00:00
50cde9c12d Merge version_1 into main
Merge version_1 into main
2026-04-26 03:48:33 +00:00

View File

@@ -3,14 +3,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Award, Clock, Sparkles, Gift, Heart, Circle } from "lucide-react";
export default function LandingPage() {
@@ -123,15 +123,19 @@ export default function LandingPage() {
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardTen
<TestimonialCardSixteen
kpiItems={[
{ label: "Happy Clients", value: "5k+" },
{ label: "Stars Rating", value: "4.9" },
{ label: "Total Orders", value: "12k" }
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "1", title: "Perfect!", quote: "Looked stunning and tasted amazing.", name: "Sarah J.", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/smiling-girl-with-curly-hair-drinking-coffee-writing-notes_7502-9175.jpg" },
{ id: "2", title: "Dream Cake", quote: "Exactly how I imagined my wedding cake.", name: "Michael C.", role: "Photographer", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waiter-serving-cup-coffee-counter_1170-559.jpg" },
{ id: "3", title: "Reliable", quote: "Smooth delivery and the taste was heavenly.", name: "Emily R.", role: "Marketing", imageSrc: "http://img.b2bpic.net/free-photo/successful-latin-businesswoman-standing-with-folded-hands-portrait-confident-young-pretty-female-office-employer-black-blouse-posing-work-business-company-management-concept_74855-7824.jpg" },
{ id: "4", title: "Stunning", quote: "The design was exquisite, thank you!", name: "David K.", role: "Designer", imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-drinks-restaurant_23-2149269141.jpg" },
{ id: "5", title: "Amazing Service", quote: "Will definitely order for every occasion.", name: "Jessica L.", role: "Architect", imageSrc: "http://img.b2bpic.net/free-photo/pretty-dreaming-young-woman-sitting-cafe-table_171337-17088.jpg" },
{ id: "1", name: "Sarah J.", role: "CEO", company: "Tech Corp", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-girl-with-curly-hair-drinking-coffee-writing-notes_7502-9175.jpg" },
{ id: "2", name: "Michael C.", role: "Photographer", company: "Studio 5", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-waiter-serving-cup-coffee-counter_1170-559.jpg" },
{ id: "3", name: "Emily R.", role: "Marketing", company: "Growth Inc", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/successful-latin-businesswoman-standing-with-folded-hands-portrait-confident-young-pretty-female-office-employer-black-blouse-posing-work-business-company-management-concept_74855-7824.jpg" },
]}
title="Meaningful Stories"
description="Hear from our community of celebration makers."
@@ -139,25 +143,28 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
<ContactCTA
tag="Connect"
title="Create Something Worth Remembering."
description="Start your custom cake design journey today with our master bakers."
buttons={[{ text: "Start Custom Design", href: "/custom" }]}
useInvertedBackground={false}
background={{ variant: "plain" }}
text="Create Something Worth Remembering."
buttons={[{ text: "Start Custom Design", href: "/custom" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "About", href: "/about" }, { label: "Our Cafe", href: "/cafe" }, { label: "Blog", href: "/blog" }] },
{ items: [{ label: "Order Tracking", href: "/track" }, { label: "Delivery Policy", href: "/delivery" }, { label: "FAQs", href: "/faq" }] },
{ items: [{ label: "Terms of Use", href: "/terms" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Contact", href: "/contact" }] },
]}
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/vertical-shot-wedding-cake-decorated-with-fresh-fruits-berries-flower-ring_181624-42002.jpg?_wi=1"
logoText="Crave co."
columns={[
{ title: "Links", items: [{ label: "About", href: "/about" }, { label: "Our Cafe", href: "/cafe" }, { label: "Blog", href: "/blog" }] },
{ title: "Support", items: [{ label: "Order Tracking", href: "/track" }, { label: "Delivery Policy", href: "/delivery" }, { label: "FAQs", href: "/faq" }] },
{ title: "Legal", items: [{ label: "Terms of Use", href: "/terms" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}