From 7c50c2402edb027e05a2fb397fbf631592a220e8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 06:15:43 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 75 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 51 insertions(+), 24 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 76cca46..03f8ac3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,9 +11,12 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Award, Heart, HelpCircle, Mail, Sparkles, Star } from 'lucide-react'; +import { Award, Heart, HelpCircle, Mail, Sparkles, Star, Plus } from 'lucide-react'; +import { useState } from 'react'; export default function LandingPage() { + const [showProductInfo, setShowProductInfo] = useState(false); + return (
- +
+ + + {showProductInfo && ( +
+ +

About Our Product

+

+ This premium skincare collection combines botanical extracts with cutting-edge scientific formulation. Each product is dermatologist-tested and suitable for all skin types, delivering visible results within 2-3 weeks of consistent use. +

+
+ )} +
@@ -328,4 +355,4 @@ export default function LandingPage() {
); -} +} \ No newline at end of file