Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bdf3a8667f | |||
| f213bb015a | |||
| 351d846850 | |||
| a2910a810d | |||
| 19c376d2a5 | |||
| 4e66507376 | |||
| 024ad22f79 | |||
| 4634553c16 | |||
| c420e0b6ba | |||
| f8feed90f2 | |||
| 4e995ce4b1 |
149
src/app/page.tsx
149
src/app/page.tsx
@@ -28,7 +28,7 @@ export default function SkincareTemplatePage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="Luminé Skincare"
|
||||
brandName="MONIKA MAKEOVER"
|
||||
navItems={[
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
@@ -36,21 +36,21 @@ export default function SkincareTemplatePage() {
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Shop Now", href: "products" }}
|
||||
button={{ text: "Contact Us", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
logoText="Luminé"
|
||||
description="Pure, natural skincare formulated for radiant, healthy skin. Discover the power of botanical ingredients and scientific innovation."
|
||||
logoText="MONIKA MAKEOVER"
|
||||
description="Professional beauty and styling services in the heart of Faridabad. Discover the art of transformation with our expert team."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/hero.webp"
|
||||
imageAlt="Luxury skincare products with natural ingredients"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Da2kg9FXpZkCrl3ccprU7JKT3z/uploaded-1778506450973-unn847be.jpg"
|
||||
imageAlt="MONIKA MAKEOVER beauty transformation"
|
||||
frameStyle="card"
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
{ text: "Book Appointment", href: "#contact" },
|
||||
{ text: "Our Services", href: "#products" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -59,72 +59,56 @@ export default function SkincareTemplatePage() {
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{ type: "text", content: "Crafted with care and precision using nature's finest elements and cutting-edge skincare science to deliver exceptional results for your skin" },
|
||||
{ type: "image", src: "https://img.b2bpic.net/free-photo/make-up-brushes-pile-wild-flowers-wooden-background_482257-9797.jpg", alt: "Natural ingredients" },
|
||||
{ type: "text", content: "Expert beauty solutions tailored to your unique style. Located at Sector 11, Hno. 221, 11D, near police chowki, Faridabad, Haryana." },
|
||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Da2kg9FXpZkCrl3ccprU7JKT3z/uploaded-1778506450974-ko3jcsfo.jpg", alt: "Salon interior" },
|
||||
{ type: "text", content: "" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
buttons={[
|
||||
{ text: "Learn More", href: "#benefits" }
|
||||
{ text: "Get Directions", href: "#contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
title="Our Signature Collection"
|
||||
description="Discover our carefully curated skincare essentials designed to nourish and revitalize your skin. Worldwide shipping available."
|
||||
title="Our Services"
|
||||
description="A curated range of beauty and makeover services to enhance your natural radiance."
|
||||
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: "1", name: "Bridal Makeover", price: "Starting Rs. 8500", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Da2kg9FXpZkCrl3ccprU7JKT3z/uploaded-1778506450974-22r9xhmv.jpg", imageAlt: "Bridal makeover"
|
||||
},
|
||||
{
|
||||
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: "2", name: "Hair Styling", price: "Starting Rs. 4000", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Da2kg9FXpZkCrl3ccprU7JKT3z/uploaded-1778506450974-eos54jgr.jpg", imageAlt: "Hair styling"
|
||||
},
|
||||
{
|
||||
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: "3", name: "Skin Treatment", price: "Starting Rs. 6500", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Da2kg9FXpZkCrl3ccprU7JKT3z/uploaded-1778506450974-hk80rb5c.jpg?_wi=1", imageAlt: "Skin treatment"
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Check Current Availability", href: "#products" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="benefits" data-section="benefits">
|
||||
<FeatureBento
|
||||
title="Why Choose Luminé"
|
||||
description="Scientifically-formulated skincare products that deliver visible results with natural, sustainable ingredients. Available for worldwide shipping."
|
||||
title="Why Choose Us"
|
||||
description="We combine expertise with premium care to ensure you look and feel your absolute best."
|
||||
features={[
|
||||
{
|
||||
title: "Worldwide Shipping",
|
||||
description: "Fast and reliable delivery to over 150 countries worldwide",
|
||||
bentoComponent: "globe"
|
||||
title: "Expert Stylists", description: "Highly trained professionals with years of beauty experience", bentoComponent: "globe"
|
||||
},
|
||||
{
|
||||
title: "Clinically Proven",
|
||||
description: "Dermatologist-tested and proven effective in clinical trials",
|
||||
bentoComponent: "line-chart"
|
||||
title: "Premium Products", description: "Using only the best high-end brands for every treatment", bentoComponent: "line-chart"
|
||||
},
|
||||
{
|
||||
title: "Sustainable",
|
||||
description: "Eco-conscious packaging and ethical sourcing practices",
|
||||
bentoComponent: "orbiting-icons",
|
||||
centerIcon: Leaf,
|
||||
title: "Personalized Care", description: "Treatments customized to match your individual style and needs", bentoComponent: "orbiting-icons", centerIcon: Leaf,
|
||||
items: [
|
||||
{ icon: Droplet, ring: 1 },
|
||||
{ icon: Sprout, ring: 2 },
|
||||
@@ -140,15 +124,10 @@ export default function SkincareTemplatePage() {
|
||||
|
||||
<div id="reviews" data-section="reviews">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="Luminé skincare has completely transformed my routine. My skin feels more radiant and healthy than ever before. I love that it's made with natural ingredients I can trust. Plus, worldwide shipping made it so easy to get my products delivered wherever I am."
|
||||
testimonial="Amazing service! I felt completely transformed after my bridal session. The team at Monika Makeover is so professional and talented."
|
||||
rating={5}
|
||||
author="Sarah Mitchell, Beauty Editor"
|
||||
avatars={[
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image5.avif", alt: "Sarah Mitchell" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image6.avif", alt: "Customer testimonial" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image7.avif", alt: "Customer testimonial" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image8.avif", alt: "Customer testimonial" }
|
||||
]}
|
||||
author="Anjali, Happy Client"
|
||||
avatars={[]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -158,31 +137,17 @@ export default function SkincareTemplatePage() {
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about our skincare products, worldwide shipping, and delivery."
|
||||
description="Find answers to common questions about our appointments and services."
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How long does it take to see results?",
|
||||
content: "Most customers notice visible improvements in skin texture and radiance within 2-4 weeks of consistent use. For more significant results like reduced fine lines or hyperpigmentation, allow 6-8 weeks."
|
||||
id: "1", title: "How do I book an appointment?", content: "You can book by calling <a href=\"tel:+919958250317\" class=\"underline\">+91 9958250317</a> or visiting our center in Sector 11, Faridabad."
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Are your products suitable for sensitive skin?",
|
||||
content: "Yes! All Luminé products are formulated to be gentle and non-irritating. We use natural ingredients and avoid common irritants. We recommend patch testing first if you have very reactive skin."
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Do you offer worldwide shipping?",
|
||||
content: "Absolutely! We ship to over 150 countries worldwide. Standard shipping typically takes 7-14 business days depending on your location. Express shipping options are also available for faster delivery."
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "What is your return policy?",
|
||||
content: "We offer a 60-day satisfaction guarantee on all purchases. If you're not completely happy with your skincare, return it for a full refund or exchange. Worldwide returns are processed efficiently through our international shipping partners."
|
||||
id: "2", title: "Do you offer at-home services?", content: "Yes, for special occasions, we offer mobile services. Please contact us for details."
|
||||
}
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image4.webp"
|
||||
imageAlt="Skincare routine and wellness"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Da2kg9FXpZkCrl3ccprU7JKT3z/uploaded-1778506450974-hk80rb5c.jpg?_wi=2"
|
||||
imageAlt="Salon service"
|
||||
mediaPosition="left"
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -194,60 +159,42 @@ export default function SkincareTemplatePage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Newsletter"
|
||||
title="Get Your Glow On"
|
||||
description="Subscribe to our newsletter for skincare tips, product launches, and exclusive worldwide shipping offers delivered to your inbox."
|
||||
tag="Contact"
|
||||
title="Let's Connect"
|
||||
description="Reach out to us for appointments or inquiries. Call +91 9958250317 or email imvaani110@gmail.com."
|
||||
tagIcon={Mail}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
termsText="We respect your privacy. Unsubscribe anytime."
|
||||
buttonText="Get in Touch"
|
||||
termsText="Located at Sector 11, Hno. 221, 11D, near police chowki, Faridabad, Haryana."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Luminé"
|
||||
logoText="MONIKA MAKEOVER"
|
||||
columns={[
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
{ label: "Moisturizers", href: "#products" },
|
||||
{ label: "Serums", href: "#products" },
|
||||
{ label: "Masks", href: "#products" },
|
||||
{ label: "Bundles", href: "#products" }
|
||||
title: "Services", items: [
|
||||
{ label: "Bridal", href: "#products" },
|
||||
{ label: "Hair", href: "#products" },
|
||||
{ label: "Skin", href: "#products" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Sustainability", href: "#about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
title: "Contact", items: [
|
||||
{ label: "Call: 9958250317", href: "tel:+919958250317" },
|
||||
{ label: "Email Us", href: "mailto:imvaani110@gmail.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Worldwide Shipping", href: "#" },
|
||||
{ label: "Returns", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Facebook", href: "#" },
|
||||
{ label: "Pinterest", href: "#" },
|
||||
{ label: "TikTok", href: "#" }
|
||||
title: "Location", items: [
|
||||
{ label: "Sector 11, Faridabad", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Luminé Skincare. All rights reserved."
|
||||
copyrightText="© 2025 MONIKA MAKEOVER. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user