3 Commits

Author SHA1 Message Date
d6ff06ec26 Update src/app/globals.css 2025-12-24 09:40:26 +00:00
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
3 changed files with 68 additions and 12 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #ffffff;;
--card: #fcfcfc;;
--foreground: #120a00e6;;
--primary-cta: #ff8c42;;
--secondary-cta: #ffffff;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
--background: #ffffff;
--card: #fcfcfc;
--foreground: #120006e6;
--primary-cta: #ff0000;
--secondary-cta: #ffffff;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

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>
);
}
}