Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4b119cccb6 | |||
| 74ec793129 |
@@ -10,7 +10,7 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia
|
|||||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||||
import { Mail, Leaf, Droplet, Sprout, Wind } from "lucide-react";
|
import { Mail, Leaf, Droplet, Sprout, Wind, Dumbbell, CircleDot, Target } from "lucide-react";
|
||||||
|
|
||||||
export default function SkincareTemplatePage() {
|
export default function SkincareTemplatePage() {
|
||||||
return (
|
return (
|
||||||
@@ -78,13 +78,13 @@ export default function SkincareTemplatePage() {
|
|||||||
description="Discover our carefully curated skincare essentials designed to nourish and revitalize your skin. Worldwide shipping available."
|
description="Discover our carefully curated skincare essentials designed to nourish and revitalize your skin. Worldwide shipping available."
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Hydrating Moisturizer", price: "$68", imageSrc: "/templates/skincare/image2.webp", imageAlt: "Hydrating Moisturizer bottle"
|
id: "1", name: "Hydrating Moisturizer", price: "$68", imageSrc: "/templates/skincare/image2.webp", imageAlt: "Hydrating Moisturizer bottle"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Radiance Serum", price: "$85", imageSrc: "/templates/skincare/image3.webp", imageAlt: "Radiance Serum bottle"
|
id: "2", name: "Radiance Serum", price: "$85", imageSrc: "/templates/skincare/image3.webp", imageAlt: "Radiance Serum bottle"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Purifying Face Mask", price: "$52", imageSrc: "/templates/skincare/image1.webp", imageAlt: "Purifying Face Mask jar"
|
id: "3", name: "Purifying Face Mask", price: "$52", imageSrc: "/templates/skincare/image1.webp", imageAlt: "Purifying Face Mask jar"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
@@ -100,13 +100,13 @@ export default function SkincareTemplatePage() {
|
|||||||
description="Scientifically-formulated skincare products that deliver visible results with natural, sustainable ingredients. Available for worldwide shipping."
|
description="Scientifically-formulated skincare products that deliver visible results with natural, sustainable ingredients. Available for worldwide shipping."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Worldwide Shipping", description: "Fast and reliable delivery to over 150 countries worldwide", bentoComponent: "globe"
|
title: "Worldwide Shipping", description: "Fast and reliable delivery to over 150 countries worldwide", bentoComponent: "globe"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Clinically Proven", description: "Dermatologist-tested and proven effective in clinical trials", bentoComponent: "line-chart"
|
title: "Clinically Proven", description: "Dermatologist-tested and proven effective in clinical trials", bentoComponent: "line-chart"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Sustainable", description: "Eco-conscious packaging and ethical sourcing practices", bentoComponent: "orbiting-icons", centerIcon: Leaf,
|
title: "Sustainable", description: "Eco-conscious packaging and ethical sourcing practices", bentoComponent: "orbiting-icons", centerIcon: Leaf,
|
||||||
items: [
|
items: [
|
||||||
{ icon: Droplet, ring: 1 },
|
{ icon: Droplet, ring: 1 },
|
||||||
{ icon: Sprout, ring: 2 },
|
{ icon: Sprout, ring: 2 },
|
||||||
@@ -138,12 +138,24 @@ export default function SkincareTemplatePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="gym" data-section="gym">
|
<div id="gym" data-section="gym">
|
||||||
<div className="py-24 bg-background">
|
<FeatureBento
|
||||||
<div className="max-w-7xl mx-auto px-6 text-center">
|
title="Luminé Performance Gym"
|
||||||
<h2 className="text-4xl font-bold mb-6">Luminé Performance Gym</h2>
|
description="Our elite facility is equipped with everything you need to reach your peak performance. From heavy-duty lifting to functional training, we've got you covered."
|
||||||
<p className="text-lg opacity-80 max-w-2xl mx-auto">Join our elite fitness community and elevate your wellness journey. State-of-the-art facilities designed for optimal physical health.</p>
|
useInvertedBackground={true}
|
||||||
</div>
|
animationType="slide-up"
|
||||||
</div>
|
textboxLayout="default"
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
title: "Leg Machines", description: "State-of-the-art leg press, squats racks, and isolation machines to build explosive lower body strength.", bentoComponent: "reveal-icon", icon: Dumbbell
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Dumbbells & Free Weights", description: "Comprehensive range of high-grade dumbbells and barbells for total control over your resistance training.", bentoComponent: "reveal-icon", icon: CircleDot
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Chest & Power Racks", description: "Dedicated chest press stations and power racks designed for safe, heavy, and progressive overload training.", bentoComponent: "reveal-icon", icon: Target
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
@@ -152,16 +164,16 @@ export default function SkincareTemplatePage() {
|
|||||||
description="Everything you need to know about our skincare products, worldwide shipping, and delivery."
|
description="Everything you need to know about our skincare products, worldwide shipping, and delivery."
|
||||||
faqs={[
|
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 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: "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: "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: "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: "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."
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
imageSrc="/templates/skincare/image4.webp"
|
imageSrc="/templates/skincare/image4.webp"
|
||||||
@@ -194,7 +206,7 @@ export default function SkincareTemplatePage() {
|
|||||||
logoText="Luminé"
|
logoText="Luminé"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product", items: [
|
title: "Product", items: [
|
||||||
{ label: "Moisturizers", href: "#products" },
|
{ label: "Moisturizers", href: "#products" },
|
||||||
{ label: "Serums", href: "#products" },
|
{ label: "Serums", href: "#products" },
|
||||||
{ label: "Masks", href: "#products" },
|
{ label: "Masks", href: "#products" },
|
||||||
@@ -202,7 +214,7 @@ export default function SkincareTemplatePage() {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "#about" },
|
||||||
{ label: "Sustainability", href: "#about" },
|
{ label: "Sustainability", href: "#about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Blog", href: "#" },
|
||||||
@@ -210,7 +222,7 @@ export default function SkincareTemplatePage() {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact Us", href: "#contact" },
|
{ label: "Contact Us", href: "#contact" },
|
||||||
{ label: "FAQ", href: "#faq" },
|
{ label: "FAQ", href: "#faq" },
|
||||||
{ label: "Worldwide Shipping", href: "#" },
|
{ label: "Worldwide Shipping", href: "#" },
|
||||||
@@ -218,7 +230,7 @@ export default function SkincareTemplatePage() {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Connect", items: [
|
title: "Connect", items: [
|
||||||
{ label: "Instagram", href: "#" },
|
{ label: "Instagram", href: "#" },
|
||||||
{ label: "Facebook", href: "#" },
|
{ label: "Facebook", href: "#" },
|
||||||
{ label: "Pinterest", href: "#" },
|
{ label: "Pinterest", href: "#" },
|
||||||
|
|||||||
Reference in New Issue
Block a user