From f480882ed5b7ee91bd4683e690ba7f73aef16a64 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 4 May 2026 20:47:26 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 174 +++++++++++++---------------------------------- 1 file changed, 47 insertions(+), 127 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f83cbd8..9f89326 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,9 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Mail, Leaf, Droplet, Sprout, Wind } from "lucide-react"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { Mail, Leaf, Droplet, Sprout, Wind, Camera, Calendar } from "lucide-react"; export default function SkincareTemplatePage() { return ( @@ -31,6 +31,7 @@ export default function SkincareTemplatePage() { brandName="Luminé Skincare" navItems={[ { name: "Products", id: "products" }, + { name: "Gallery", id: "gallery" }, { name: "About", id: "about" }, { name: "Benefits", id: "benefits" }, { name: "Reviews", id: "reviews" }, @@ -76,27 +77,9 @@ export default function SkincareTemplatePage() { title="Our Signature Collection" description="Discover our carefully curated skincare essentials designed to nourish and revitalize your skin. Worldwide shipping available." products={[ - { - id: "1", - name: "Hydrating Moisturizer", - price: "$68", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image2.webp", - imageAlt: "Hydrating Moisturizer bottle" - }, - { - id: "2", - name: "Radiance Serum", - price: "$85", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image3.webp", - imageAlt: "Radiance Serum bottle" - }, - { - id: "3", - name: "Purifying Face Mask", - price: "$52", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image1.webp", - imageAlt: "Purifying Face Mask jar" - } + { id: "1", name: "Hydrating Moisturizer", price: "$68", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image2.webp", imageAlt: "Hydrating Moisturizer bottle" }, + { id: "2", name: "Radiance Serum", price: "$85", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image3.webp", imageAlt: "Radiance Serum bottle" }, + { id: "3", name: "Purifying Face Mask", price: "$52", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image1.webp", imageAlt: "Purifying Face Mask jar" } ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -105,32 +88,32 @@ export default function SkincareTemplatePage() { /> + +
- console.log(email)} />
); -} +} \ No newline at end of file -- 2.49.1 From 98212908b5390b4f6f936b1ea9d9f5a3196827d6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 4 May 2026 20:47:26 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index a25430f..8b2eae7 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-libre-baskerville), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-libre-baskerville), sans-serif; } -- 2.49.1 From e112834a49033b1116ef66409a63d84d535c8b49 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 4 May 2026 20:47:27 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d45b6e6..4a3cc58 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #fcf6ec; - --card: #f3ede2; - --foreground: #2e2521; - --primary-cta: #2e2521; + --background: #f6f0e9; + --card: #efe7dd; + --foreground: #2b180a; + --primary-cta: #2b180a; --primary-cta-text: #fcf6ec; - --secondary-cta: #ffffff; + --secondary-cta: #efe7dd; --secondary-cta-text: #2e2521; - --accent: #b2a28b; - --background-accent: #b2a28b; + --accent: #94877c; + --background-accent: #afa094; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1