Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bbc5cf0916 |
114
src/app/page.tsx
114
src/app/page.tsx
@@ -28,30 +28,30 @@ export default function SkincareTemplatePage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="AuraGlow Skincare"
|
||||
brandName="Lumina Jewels"
|
||||
navItems={[
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Benefits", id: "benefits" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Collections", id: "products" },
|
||||
{ name: "About Us", id: "about" },
|
||||
{ name: "Our Promise", id: "benefits" },
|
||||
{ name: "Testimonials", id: "reviews" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Explore Our Collection", href: "products" }}
|
||||
button={{ text: "Discover Our Craft", href: "#products" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
logoText="AuraGlow"
|
||||
description="Unlock your skin's natural radiance with AuraGlow. Pure, potent formulations for a healthy, vibrant glow."
|
||||
logoText="Lumina Jewels"
|
||||
description="Adorn yourself with timeless elegance. Handcrafted jewellery that captures your unique sparkle."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-elegant-skincare-container-with-pearls_181624-30633.jpg"
|
||||
imageAlt="Luxurious AuraGlow skincare products in a minimalist setting"
|
||||
imageSrc="https://images.unsplash.com/photo-1599385078512-40cf3096055a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTB8fGpld2VsbGVyeXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60"
|
||||
imageAlt="Exquisite handcrafted jewellery pieces."
|
||||
frameStyle="card"
|
||||
buttons=[
|
||||
{ text: "Shop the Collection", href: "#products" },
|
||||
{ text: "Our Philosophy", href: "#about" }
|
||||
]
|
||||
buttons={[
|
||||
{ text: "View Collections", href: "#products" },
|
||||
{ text: "Our Artistry", href: "#about" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -59,32 +59,32 @@ export default function SkincareTemplatePage() {
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{ type: "text", content: "Dedicated to crafting exceptional skincare with nature's finest ingredients and advanced scientific innovation, bringing out your skin's inherent luminosity."
|
||||
{ type: "text", content: "At Lumina Jewels, we are dedicated to crafting exquisite jewellery pieces, blending traditional artistry with contemporary design to capture the essence of your unique story."
|
||||
},
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/cosmetic-products-treatment-desk_23-2148574966.jpg", alt: "Natural botanical ingredients and skincare products" },
|
||||
{ type: "image", src: "https://images.unsplash.com/photo-1621644728551-766a5e114170?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTd8fGplcmxleXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60", alt: "A jewellery designer meticulously working on a piece" },
|
||||
{ type: "text", content: "" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
buttons={[
|
||||
{ text: "Discover Our Story", href: "#benefits" }
|
||||
{ text: "Our Craftsmanship", href: "#benefits" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
title="The AuraGlow Essentials"
|
||||
description="Explore our signature collection of skincare heroes, meticulously formulated to nourish, protect, and revitalize your complexion."
|
||||
title="Our Signature Collections"
|
||||
description="Explore our exquisite collections, where each piece is a testament to meticulous craftsmanship and timeless beauty."
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Radiant Hydration Cream", price: "$75", imageSrc: "http://img.b2bpic.net/free-photo/natural-hydrating-cream-with-eucalyptus-marble-surface_23-2152029119.jpg", imageAlt: "Radiant Hydration Cream jar"
|
||||
id: "1", name: "Diamond Solitaire Necklace", price: "$1,800", imageSrc: "https://images.unsplash.com/photo-1626019623831-291754407b39?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mzh8fGplcmxleXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60", imageAlt: "Elegant diamond solitaire necklace"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Vitality Boost Serum", price: "$90", imageSrc: "http://img.b2bpic.net/free-photo/healthy-jojoba-oil-arrangement_23-2149047718.jpg", imageAlt: "Vitality Boost Serum bottle"
|
||||
id: "2", name: "Sapphire Drop Earrings", price: "$950", imageSrc: "https://images.unsplash.com/photo-1605101677699-2a99d216f2c7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NDh8fGplcmxleXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60", imageAlt: "Stunning sapphire drop earrings"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Deep Cleanse Detox Mask", price: "$58", imageSrc: "http://img.b2bpic.net/free-photo/gua-sha-face-roller-plate-arrangement_23-2149357121.jpg", imageAlt: "Deep Cleanse Detox Mask jar"
|
||||
id: "3", name: "Emerald Cocktail Ring", price: "$1,200", imageSrc: "https://images.unsplash.com/photo-1612450702517-567c94541793?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTJ8fGplcmxleXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60", imageAlt: "Vibrant emerald cocktail ring"
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -96,17 +96,17 @@ export default function SkincareTemplatePage() {
|
||||
|
||||
<div id="benefits" data-section="benefits">
|
||||
<FeatureBento
|
||||
title="Why Choose AuraGlow?"
|
||||
description="Experience the difference of skincare that's rooted in nature, backed by science, and designed for your ultimate glow."
|
||||
title="The Lumina Jewels Promise"
|
||||
description="Discover the enduring value and radiant beauty of jewellery crafted with passion, precision, and the finest materials."
|
||||
features={[
|
||||
{
|
||||
title: "Natural & Organic Ingredients", description: "Harnessing the purest botanicals, free from harsh chemicals, for gentle yet powerful results.", bentoComponent: "reveal-icon", icon: Leaf
|
||||
title: "Exceptional Craftsmanship", description: "Every piece is meticulously handcrafted by skilled artisans, ensuring unparalleled quality and intricate detail.", bentoComponent: "reveal-icon", icon: Leaf
|
||||
},
|
||||
{
|
||||
title: "Dermatologist Approved", description: "Our formulations are rigorously tested and approved by dermatologists for efficacy and safety.", bentoComponent: "reveal-icon", icon: ShieldCheck
|
||||
title: "Ethically Sourced Materials", description: "We are committed to using only responsibly and ethically sourced diamonds and precious metals.", bentoComponent: "reveal-icon", icon: ShieldCheck
|
||||
},
|
||||
{
|
||||
title: "Visible Radiance & Health", description: "Witness a transformation to healthier, more luminous skin with consistent use.", bentoComponent: "orbiting-icons", centerIcon: Sparkle,
|
||||
title: "Timeless Design & Brilliance", description: "Our designs are created to be cherished for generations, radiating beauty and capturing every moment.", bentoComponent: "orbiting-icons", centerIcon: Sparkle,
|
||||
items: [
|
||||
{ icon: Droplet, ring: 1 },
|
||||
{ icon: Sprout, ring: 2 },
|
||||
@@ -122,14 +122,14 @@ export default function SkincareTemplatePage() {
|
||||
|
||||
<div id="reviews" data-section="reviews">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="AuraGlow has completely revolutionized my skincare routine. My skin has never felt so soft, clear, and truly radiant. I've received so many compliments! It's an absolute game-changer for achieving a healthy glow."
|
||||
testimonial="Lumina Jewels created the most stunning engagement ring for me. The craftsmanship is exquisite, and it truly sparkles! It's a treasured piece I'll cherish forever."
|
||||
rating={5}
|
||||
author="Jessica L., Skincare Enthusiast"
|
||||
author="Sarah P., Happy Customer"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-pretty-woman-getting-special-skin-treatment-beautiful-girl-applying-serum-isolated-white-background-smooth-skin-without-wrinkles_657921-610.jpg", alt: "Jessica L." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-woman-business-embrace-confidence-posing-beauty-black-african-american-isolated-gray-background_640221-39.jpg", alt: "Customer Testimonial" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/cute-young-woman-skincare-portrait_624325-3443.jpg", alt: "Customer Testimonial" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-man-sitting-sofa_1098-927.jpg", alt: "Customer Testimonial" }
|
||||
{ src: "https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8cGVvcGxlfGVufDB8fDB8fHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60", alt: "Sarah P." },
|
||||
{ src: "https://images.unsplash.com/photo-1507003211169-e63ba1db6a4e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTJ8fHBlb3BsZXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60", alt: "Customer Testimonial" },
|
||||
{ src: "https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTR8fHBlb3BsZXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60", alt: "Customer Testimonial" },
|
||||
{ src: "https://images.unsplash.com/photo-1517841905240-472988babdf9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTd8fHBlb3BsZXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60", alt: "Customer Testimonial" }
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -139,24 +139,24 @@ export default function SkincareTemplatePage() {
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Your Skincare Questions, Answered"
|
||||
description="Find quick answers to the most common inquiries about AuraGlow products, ingredients, and how to achieve your best skin."
|
||||
title="Your Jewellery Questions, Answered"
|
||||
description="Find quick answers to the most common inquiries about Lumina Jewels, our craftsmanship, and how to care for your cherished pieces."
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "Which AuraGlow products are right for my skin type?", content: "We offer a range of products tailored for different skin concerns. Visit our 'Products' section for detailed descriptions and recommendations, or take our quick online skin quiz for personalized suggestions."
|
||||
id: "1", title: "How do I choose the perfect piece of jewellery?", content: "Our expert team is here to guide you. Consider the occasion, personal style, and metal preferences. Browse our 'Collections' or contact us for personalized recommendations."
|
||||
},
|
||||
{
|
||||
id: "2", title: "How quickly can I expect to see results from AuraGlow products?", content: "While individual results vary, many users report noticeable improvements in skin texture and radiance within 2-4 weeks. Consistent use over 6-8 weeks often reveals more significant benefits."
|
||||
id: "2", title: "What is your process for custom jewellery designs?", content: "We offer bespoke design services. Share your vision, and our designers will work with you through sketches, 3D models, and material selection to create a unique piece."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Are AuraGlow products cruelty-free and vegan?", content: "Yes, absolutely! AuraGlow is committed to ethical beauty. All our products are 100% cruelty-free and formulated without any animal-derived ingredients, making them entirely vegan."
|
||||
id: "3", title: "Do you offer resizing or repairs?", content: "Yes, we provide resizing and repair services for Lumina Jewels pieces. Please visit our 'Care Guides' or contact customer service for more information."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What is your return and exchange policy?", content: "We stand behind the quality of AuraGlow. If you're not completely satisfied with your purchase, you can return it within 30 days for a full refund or exchange. Please see our dedicated 'Returns' page for full details."
|
||||
id: "4", title: "What is your warranty and return policy?", content: "All Lumina Jewels come with a comprehensive warranty against manufacturing defects. If you are not completely satisfied, you may return your item within 30 days. Please see our 'Returns' page for full details."
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cute-plants-near-cosmetics-bottles_23-2147787942.jpg"
|
||||
imageAlt="A woman thoughtfully applying skincare products as part of her routine"
|
||||
imageSrc="https://images.unsplash.com/photo-1588691515286-4f40ed97c36a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTIwfHxqZXdlbHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=800&q=60"
|
||||
imageAlt="Close-up of a jewellery designer working on a delicate piece."
|
||||
mediaPosition="left"
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -168,40 +168,40 @@ export default function SkincareTemplatePage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Stay Radiant"
|
||||
title="Join the AuraGlow Community"
|
||||
description="Subscribe to our newsletter for exclusive skincare tips, new product launches, and special offers delivered directly to your inbox."
|
||||
tag="Shine Bright"
|
||||
title="Connect with Lumina Jewels"
|
||||
description="Subscribe to our newsletter for exclusive updates on new collections, special events, and insights into the world of fine jewellery."
|
||||
tagIcon={Mail}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email address"
|
||||
buttonText="Subscribe Now"
|
||||
termsText="By subscribing, you agree to receive marketing emails from AuraGlow. You can unsubscribe anytime."
|
||||
termsText="By subscribing, you agree to receive marketing emails from Lumina Jewels. You can unsubscribe anytime."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="AuraGlow"
|
||||
logoText="Lumina Jewels"
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "Creams", href: "#products" },
|
||||
{ label: "Serums", href: "#products" },
|
||||
{ label: "Masks", href: "#products" },
|
||||
{ label: "Bundles & Sets", href: "#products" }
|
||||
title: "Shop", items: [
|
||||
{ label: "Necklaces", href: "#products" },
|
||||
{ label: "Earrings", href: "#products" },
|
||||
{ label: "Rings", href: "#products" },
|
||||
{ label: "Bracelets & Bangles", href: "#products" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "AuraGlow", items: [
|
||||
title: "Lumina Jewels", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Ingredients", href: "#benefits" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Craftsmanship", href: "#benefits" },
|
||||
{ label: "Care Guides", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "FAQs", href: "#faq" },
|
||||
{ label: "Shipping & Returns", href: "#faq" },
|
||||
@@ -209,7 +209,7 @@ export default function SkincareTemplatePage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
title: "Connect", items: [
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Facebook", href: "#" },
|
||||
{ label: "TikTok", href: "#" },
|
||||
@@ -217,7 +217,7 @@ export default function SkincareTemplatePage() {
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 AuraGlow Skincare. All rights reserved."
|
||||
copyrightText="© 2025 Lumina Jewels. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user