16 Commits

Author SHA1 Message Date
e45b6f9848 Merge version_12 into main
Merge version_12 into main
2026-01-23 15:36:55 +00:00
ef7ff286f4 Update src/app/page.tsx 2026-01-23 15:36:50 +00:00
3b34965d37 Merge version_11 into main
Merge version_11 into main
2026-01-23 14:21:01 +00:00
788f1a675e Update src/app/page.tsx 2026-01-23 14:20:56 +00:00
5596b3fe44 Update src/app/layout.tsx 2026-01-23 14:20:55 +00:00
013d26bfcd Merge version_10 into main
Merge version_10 into main
2026-01-23 11:41:00 +00:00
29b2408181 Update src/app/page.tsx 2026-01-23 11:40:56 +00:00
7c19ffa960 Merge version_9 into main
Merge version_9 into main
2026-01-23 11:35:30 +00:00
f645533284 Merge version_9 into main
Merge version_9 into main
2026-01-23 11:33:41 +00:00
53534cb583 Merge version_8 into main
Merge version_8 into main
2026-01-22 21:36:21 +00:00
0c909ce101 Merge version_7 into main
Merge version_7 into main
2026-01-22 21:25:43 +00:00
11a3617110 Merge version_6 into main
Merge version_6 into main
2026-01-22 21:22:59 +00:00
94d8973735 Merge version_5 into main
Merge version_5 into main
2026-01-22 21:13:46 +00:00
e404234329 Merge version_4 into main
Merge version_4 into main
2026-01-22 20:29:16 +00:00
95716bf5b0 Merge version_3 into main
Merge version_3 into main
2026-01-22 20:08:05 +00:00
6a6a795014 Merge version_2 into main
Merge version_2 into main
2026-01-22 20:03:35 +00:00
2 changed files with 28 additions and 5 deletions

View File

@@ -1264,4 +1264,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -2,14 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Sparkles, Heart, Quote, Star, Mail } from "lucide-react";
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import { Sparkles, Heart, Quote, Star, Mail, TrendingUp } from "lucide-react";
export default function LandingPage() {
return (
@@ -42,7 +43,7 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboard
<HeroBillboardScroll
title="Welcome to Artisan Bakery"
description="Handcrafted pastries, fresh-baked breads, and delicious treats made daily with the finest ingredients. Taste the difference tradition makes."
background={{ variant: "sparkles-gradient" }}
@@ -112,6 +113,28 @@ export default function LandingPage() {
/>
</div>
<div id="social-proof" data-section="social-proof">
<MetricCardFourteen
title="Trusted by thousands of customers who love our fresh-baked goods every single day."
tag="Social Proof"
metrics={[
{
id: "1", value: "15K+", description: "Happy customers enjoying our fresh-baked pastries and artisan breads every month."
},
{
id: "2", value: "2K+", description: "Five-star reviews from satisfied customers across all platforms."
},
{
id: "3", value: "50+", description: "Unique artisan products handcrafted fresh daily in our bakery."
},
{
id: "4", value: "15", description: "Years of tradition, excellence, and commitment to quality since our founding."
}
]}
useInvertedBackground="noInvert"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
testimonials={[
@@ -186,4 +209,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}