2 Commits

Author SHA1 Message Date
4d81030fb7 Update src/app/page.tsx 2025-12-24 09:37:59 +00:00
497b3b9768 Update src/app/layout.tsx 2025-12-24 09:37:58 +00:00
2 changed files with 59 additions and 3 deletions

View File

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

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -7,6 +7,7 @@ import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCa
import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactText from '@/components/sections/contact/ContactText';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Coffee, Heart, Sparkles, Star } from "lucide-react";
@@ -184,6 +185,61 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardTwo
title="Premium Selection"
description="Our best-rated products loved by customers worldwide"
tag="Top Rated"
tagIcon={Star}
products={[
{
id: "1",
brand: "My Day Roastery",
name: "Single Accent Chair",
price: "$650.00",
rating: 5,
reviewCount: "2.3k",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766565657535-2effi2o4.jpg",
imageAlt: "Premium coffee blend"
},
{
id: "2",
brand: "My Day Roastery",
name: "Cold Brew Collection",
price: "$45.00",
rating: 4,
reviewCount: "1.8k",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766565659198-9eavtm8q.jpg",
imageAlt: "Cold brew collection"
},
{
id: "3",
brand: "My Day Roastery",
name: "Espresso Gift Set",
price: "$89.99",
rating: 5,
reviewCount: "945",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766565657535-2effi2o4.jpg",
imageAlt: "Espresso gift set"
},
{
id: "4",
brand: "My Day Roastery",
name: "Artisan Coffee Sampler",
price: "$65.00",
rating: 4,
reviewCount: "1.2k",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766565658398-rzdk67xj.jpg",
imageAlt: "Coffee sampler pack"
}
]}
gridVariant="uniform-all-items-equal"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground="noInvert"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="My Day"
@@ -214,4 +270,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}