Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a21bf1d12f | |||
| ef65d3e7e6 |
179
src/app/page.tsx
179
src/app/page.tsx
@@ -8,11 +8,11 @@ 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 ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Mail, Leaf, Droplet, Sprout, Wind } from "lucide-react";
|
||||
|
||||
export default function SkincareTemplatePage() {
|
||||
export default function CafeCappuccinoPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -28,7 +28,7 @@ export default function SkincareTemplatePage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="Luminé Skincare"
|
||||
brandName="Cafe Cappuccino"
|
||||
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: "Order Now", href: "products" }}
|
||||
/>
|
||||
</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="Cafe Cappuccino"
|
||||
description="Handcrafted coffee, artisanal pastries, and a warm atmosphere. Discover the perfect brew designed for your daily rhythm."
|
||||
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://img.b2bpic.net/free-photo/coffee-cup-table_144627-16477.jpg"
|
||||
imageAlt="Coffee cup on table"
|
||||
frameStyle="card"
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
{ text: "View Menu", href: "#products" },
|
||||
{ text: "Our Story", href: "#about" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -59,8 +59,8 @@ 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: "Brewing excellence in every cup. We source our beans sustainably from small family farms to bring you the richest flavor profiles imaginable." },
|
||||
{ type: "image", src: "https://img.b2bpic.net/free-photo/coffee-latte-art_144627-31278.jpg", alt: "Latte art" },
|
||||
{ type: "text", content: "" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
@@ -73,30 +73,12 @@ export default function SkincareTemplatePage() {
|
||||
|
||||
<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 Signature Brews"
|
||||
description="Experience the finest blends, meticulously crafted by our expert baristas daily."
|
||||
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: "Signature Cappuccino", price: "$4.50", imageSrc: "https://img.b2bpic.net/free-photo/cappuccino-coffee-cup_144627-16477.jpg", imageAlt: "Cappuccino" },
|
||||
{ id: "2", name: "Espresso Roast", price: "$3.00", imageSrc: "https://img.b2bpic.net/free-photo/black-coffee-cup_144627-16477.jpg", imageAlt: "Espresso" },
|
||||
{ id: "3", name: "Iced Vanilla Latte", price: "$5.25", imageSrc: "https://img.b2bpic.net/free-photo/iced-latte_144627-31278.jpg", imageAlt: "Iced Latte" }
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
@@ -107,30 +89,12 @@ export default function SkincareTemplatePage() {
|
||||
|
||||
<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 Cafe Cappuccino"
|
||||
description="We combine traditional roasting techniques with modern comfort to provide an unforgettable coffee experience."
|
||||
features={[
|
||||
{
|
||||
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: "Sustainable",
|
||||
description: "Eco-conscious packaging and ethical sourcing practices",
|
||||
bentoComponent: "orbiting-icons",
|
||||
centerIcon: Leaf,
|
||||
items: [
|
||||
{ icon: Droplet, ring: 1 },
|
||||
{ icon: Sprout, ring: 2 },
|
||||
{ icon: Wind, ring: 3 }
|
||||
]
|
||||
}
|
||||
{ title: "Direct Trade", description: "Supporting small growers worldwide", bentoComponent: "globe" },
|
||||
{ title: "Fresh Roasted", description: "Roasted in-house daily for peak freshness", bentoComponent: "line-chart" },
|
||||
{ title: "Organic Beans", description: "Ethically sourced, 100% organic Arabica", bentoComponent: "orbiting-icons", centerIcon: Leaf, items: [{ icon: Droplet, ring: 1 }, { icon: Sprout, ring: 2 }, { icon: Wind, ring: 3 }] }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -140,14 +104,12 @@ 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="The best cappuccino I've had in years! The atmosphere is perfect for both work and relaxing with friends. Absolutely love the signature roast."
|
||||
rating={5}
|
||||
author="Sarah Mitchell, Beauty Editor"
|
||||
author="Alex R., Coffee Enthusiast"
|
||||
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" }
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image5.avif", alt: "Customer" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image6.avif", alt: "Customer" }
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -158,31 +120,13 @@ 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="Answers to your questions about our cafe, our roasting process, and private event bookings."
|
||||
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: "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: "1", title: "Do you offer decaf?", content: "Yes, we offer a high-quality Swiss water processed decaf blend." },
|
||||
{ id: "2", title: "Can I book the space?", content: "Absolutely, our cafe is available for private events on weekends." }
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image4.webp"
|
||||
imageAlt="Skincare routine and wellness"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/coffee-shop-interior_144627-16477.jpg"
|
||||
imageAlt="Cafe interior"
|
||||
mediaPosition="left"
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -193,63 +137,24 @@ export default function SkincareTemplatePage() {
|
||||
</div>
|
||||
|
||||
<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."
|
||||
tagIcon={Mail}
|
||||
background={{ variant: "plain" }}
|
||||
<ContactText
|
||||
text="Visit us at 123 Espresso Way, Coffee City. Open daily 7 AM - 7 PM. Send your inquiry using the contact form below."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
termsText="We respect your privacy. Unsubscribe anytime."
|
||||
buttons={[{ text: "Contact Us", href: "mailto:hello@cafecappuccino.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Luminé"
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
{ label: "Moisturizers", href: "#products" },
|
||||
{ label: "Serums", href: "#products" },
|
||||
{ label: "Masks", href: "#products" },
|
||||
{ label: "Bundles", href: "#products" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Sustainability", href: "#about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
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: "Menu", items: [{ label: "Espresso", href: "#" }, { label: "Pastries", href: "#" }] },
|
||||
{ title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "Twitter", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 Luminé Skincare. All rights reserved."
|
||||
bottomLeftText="© 2025 Cafe Cappuccino"
|
||||
bottomRightText="All Rights Reserved"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user