Update src/app/page.tsx
This commit is contained in:
213
src/app/page.tsx
213
src/app/page.tsx
@@ -33,21 +33,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Our Story",
|
||||
id: "about",
|
||||
},
|
||||
name: "Our Story", id: "about"},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "products",
|
||||
},
|
||||
name: "Shop", id: "products"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "faq",
|
||||
},
|
||||
name: "FAQ", id: "faq"},
|
||||
]}
|
||||
brandName="Daisy Candle Co."
|
||||
/>
|
||||
@@ -59,32 +51,20 @@ export default function LandingPage() {
|
||||
description="Experience the delicate essence of nature with our hand-poured, daisy-infused soy candles. Designed to bring peace and serenity to your home."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop Candles",
|
||||
href: "#products",
|
||||
},
|
||||
text: "Shop Candles", href: "#products"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/still-life-flowers-with-decorative-objects-living-room_169016-5967.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/still-life-flowers-with-decorative-objects-living-room_169016-5967.jpg"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-woman-bed_23-2149304904.jpg",
|
||||
alt: "Customer profile 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-woman-bed_23-2149304904.jpg", alt: "Customer profile 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/female-with-radiant-smile-sitting-room_259150-60488.jpg",
|
||||
alt: "Customer profile 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/female-with-radiant-smile-sitting-room_259150-60488.jpg", alt: "Customer profile 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-blonde-caucasian-girl-shirt-jeans-sits-by-window-has-conversation-with-friend-concept-rest-recovery_197531-31505.jpg",
|
||||
alt: "Customer profile 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-blonde-caucasian-girl-shirt-jeans-sits-by-window-has-conversation-with-friend-concept-rest-recovery_197531-31505.jpg", alt: "Customer profile 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/view-woman-cafe-with-laptop_197531-33889.jpg",
|
||||
alt: "Customer profile 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/view-woman-cafe-with-laptop_197531-33889.jpg", alt: "Customer profile 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/person-conducting-reiki-therapy_23-2149403941.jpg",
|
||||
alt: "Customer profile 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/person-conducting-reiki-therapy_23-2149403941.jpg", alt: "Customer profile 5"},
|
||||
]}
|
||||
avatarText="Join 5,000+ happy candle lovers"
|
||||
/>
|
||||
@@ -97,19 +77,13 @@ export default function LandingPage() {
|
||||
description="We believe in the power of simplicity. Every candle is handcrafted with pure soy wax and the spirit of blooming daisies, ensuring your space feels like a gentle garden retreat."
|
||||
metrics={[
|
||||
{
|
||||
value: "100%",
|
||||
title: "Organic Ingredients",
|
||||
},
|
||||
value: "100%", title: "Organic Ingredients"},
|
||||
{
|
||||
value: "24h",
|
||||
title: "Average Burn Time",
|
||||
},
|
||||
value: "24h", title: "Average Burn Time"},
|
||||
{
|
||||
value: "12+",
|
||||
title: "Floral Varieties",
|
||||
},
|
||||
value: "12+", title: "Floral Varieties"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/camomiles-shea-butter_23-2147677828.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/camomiles-shea-butter_23-2147677828.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -123,47 +97,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Signature Daisy",
|
||||
price: "$28",
|
||||
variant: "Soy Wax",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/candles-spring-flowers-table-serving-decor-concept-top-view_169016-28298.jpg?_wi=1",
|
||||
},
|
||||
id: "p1", name: "Signature Daisy", price: "$28", variant: "Soy Wax", imageSrc: "http://img.b2bpic.net/free-photo/candles-spring-flowers-table-serving-decor-concept-top-view_169016-28298.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Sun-Kissed Petals",
|
||||
price: "$32",
|
||||
variant: "Small Batch",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-halloween_23-2147680564.jpg",
|
||||
},
|
||||
id: "p2", name: "Sun-Kissed Petals", price: "$32", variant: "Small Batch", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-halloween_23-2147680564.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Garden Retreat",
|
||||
price: "$25",
|
||||
variant: "Eco-friendly",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cream-flowers_23-2148419401.jpg",
|
||||
},
|
||||
id: "p3", name: "Garden Retreat", price: "$25", variant: "Eco-friendly", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cream-flowers_23-2148419401.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Floral Harmony",
|
||||
price: "$30",
|
||||
variant: "Hand-poured",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dried-chamomile-flowers-wooden-bowl_114579-66384.jpg",
|
||||
},
|
||||
id: "p4", name: "Floral Harmony", price: "$30", variant: "Hand-poured", imageSrc: "http://img.b2bpic.net/free-photo/dried-chamomile-flowers-wooden-bowl_114579-66384.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Spring Awakening",
|
||||
price: "$28",
|
||||
variant: "Aromatic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/oatmeal-cookies-cup-daisies-book_114579-75937.jpg",
|
||||
},
|
||||
id: "p5", name: "Spring Awakening", price: "$28", variant: "Aromatic", imageSrc: "http://img.b2bpic.net/free-photo/oatmeal-cookies-cup-daisies-book_114579-75937.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Meadow Breeze",
|
||||
price: "$35",
|
||||
variant: "Premium",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/floral-composition-wooden-plate_23-2147693021.jpg",
|
||||
},
|
||||
id: "p6", name: "Meadow Breeze", price: "$35", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/floral-composition-wooden-plate_23-2147693021.jpg"},
|
||||
]}
|
||||
title="Our Collection"
|
||||
description="Explore our curated selection of floral-inspired candles, each capturing a unique moment of spring."
|
||||
@@ -177,49 +121,31 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Eco-Friendly Soy",
|
||||
description: "100% natural, clean burning wax.",
|
||||
icon: Leaf,
|
||||
title: "Eco-Friendly Soy", description: "100% natural, clean burning wax.", icon: Leaf,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/large-beautiful-candle-eucalyptus-twigs-white-background-isolated_169016-25947.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/large-beautiful-candle-eucalyptus-twigs-white-background-isolated_169016-25947.jpg"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/candles-spring-flowers-table-serving-decor-concept-top-view_169016-29130.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-flowers-with-decorative-objects-living-room_169016-5967.jpg?_wi=2",
|
||||
imageAlt: "daisy petal scented candle jar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/candles-spring-flowers-table-serving-decor-concept-top-view_169016-29130.jpg"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Ethical Sourcing",
|
||||
description: "Supporting local floral growers.",
|
||||
icon: Heart,
|
||||
title: "Ethical Sourcing", description: "Supporting local floral growers.", icon: Heart,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-essential-oil-with-pink-flower-petals-bowl_23-2147844949.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-essential-oil-with-pink-flower-petals-bowl_23-2147844949.jpg"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/christmas-decor-house_23-2151207025.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/camomiles-shea-butter_23-2147677828.jpg?_wi=2",
|
||||
imageAlt: "daisy petal scented candle jar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/christmas-decor-house_23-2151207025.jpg"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Artisan Quality",
|
||||
description: "Poured by hand in small batches.",
|
||||
icon: Award,
|
||||
title: "Artisan Quality", description: "Poured by hand in small batches.", icon: Award,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/background-with-flowers-cup_23-2147721587.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/background-with-flowers-cup_23-2147721587.jpg"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-with-spring-flowers-interior_169016-2072.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/candles-spring-flowers-table-serving-decor-concept-top-view_169016-28298.jpg?_wi=2",
|
||||
imageAlt: "daisy petal scented candle jar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-with-spring-flowers-interior_169016-2072.jpg"},
|
||||
]
|
||||
},
|
||||
]}
|
||||
title="Why Choose Us"
|
||||
@@ -232,14 +158,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Home Living",
|
||||
"Green Life",
|
||||
"Artisan Weekly",
|
||||
"Eco Chic",
|
||||
"Bloom Today",
|
||||
"Modern Home",
|
||||
"Daily Rituals",
|
||||
]}
|
||||
"Home Living", "Green Life", "Artisan Weekly", "Eco Chic", "Bloom Today", "Modern Home", "Daily Rituals"]}
|
||||
title="Featured In"
|
||||
description="Recognized by industry leaders for our commitment to quality."
|
||||
/>
|
||||
@@ -253,25 +172,15 @@ export default function LandingPage() {
|
||||
author="Elise M."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-taking-break-from-taking-care-indoor-plants_23-2148850884.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-taking-break-from-taking-care-indoor-plants_23-2148850884.jpg", alt: "Customer 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/xmas-holidays-decor-party-festive-atmosphere-concept-good-looking-cheerful-middle-aged-female-with-short-hair-enjoying-christmas-mood-sitting-around-wax-candles-decorations-lights_343059-4681.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/xmas-holidays-decor-party-festive-atmosphere-concept-good-looking-cheerful-middle-aged-female-with-short-hair-enjoying-christmas-mood-sitting-around-wax-candles-decorations-lights_343059-4681.jpg", alt: "Customer 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-sitting-floor-home-with-christmas-presents_114579-80834.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-sitting-floor-home-with-christmas-presents_114579-80834.jpg", alt: "Customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-view-cute-woman-with-book-home_197531-32317.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-view-cute-woman-with-book-home_197531-32317.jpg", alt: "Customer 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/thoughtful-blond-woman-holding-flower-face_23-2148079408.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/thoughtful-blond-woman-holding-flower-face_23-2148079408.jpg", alt: "Customer 5"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -284,20 +193,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What wax do you use?",
|
||||
content: "We use 100% natural, eco-friendly soy wax.",
|
||||
},
|
||||
id: "1", title: "What wax do you use?", content: "We use 100% natural, eco-friendly soy wax."},
|
||||
{
|
||||
id: "2",
|
||||
title: "How long do they burn?",
|
||||
content: "Our candles average 24 hours of burn time.",
|
||||
},
|
||||
id: "2", title: "How long do they burn?", content: "Our candles average 24 hours of burn time."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Are they safe for pets?",
|
||||
content: "Yes, our oils are non-toxic and pet-safe.",
|
||||
},
|
||||
id: "3", title: "Are they safe for pets?", content: "Yes, our oils are non-toxic and pet-safe."},
|
||||
]}
|
||||
title="Questions? We're Here."
|
||||
description="Find everything you need to know about your candles."
|
||||
@@ -309,14 +209,11 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
text="Have a custom request? Reach out and say hello!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:hello@daisycandles.com",
|
||||
},
|
||||
text: "Contact Us", href: "mailto:hello@daisycandles.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -325,29 +222,19 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About", href: "#about"},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Shop", href: "#products"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms", href: "#"},
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user