Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 599c530da2 | |||
| f9f3b331ed | |||
| b6808c4b2a |
138
src/app/page.tsx
138
src/app/page.tsx
@@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
|||||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -29,25 +29,15 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "home"},
|
||||||
id: "home",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Products",
|
name: "Products", id: "products"},
|
||||||
id: "products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "FAQ",
|
name: "FAQ", id: "faq"},
|
||||||
id: "faq",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Lumina Skincare"
|
brandName="Lumina Skincare"
|
||||||
/>
|
/>
|
||||||
@@ -56,19 +46,14 @@ export default function LandingPage() {
|
|||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroLogoBillboard
|
<HeroLogoBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
logoText="Lumina"
|
logoText="Lumina"
|
||||||
description="Redefine your glow with our science-backed, nature-infused skincare collection."
|
description="Redefine your glow with our science-backed, nature-infused skincare collection."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Shop Now",
|
text: "Shop Now", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Our Story",
|
text: "Our Story", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/a-high-end-minimalist-skincare-product-s-1774858641752-34f2432e.png"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/a-high-end-minimalist-skincare-product-s-1774858641752-34f2432e.png"
|
||||||
@@ -81,55 +66,32 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "Pure radiance, "},
|
||||||
content: "Pure radiance, ",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/a-serene-skincare-ingredient-display-sho-1774858642118-c335ead4.png", alt: "Skincare Ingredients"},
|
||||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/a-serene-skincare-ingredient-display-sho-1774858642118-c335ead4.png",
|
|
||||||
alt: "Skincare Ingredients",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: " formulated for you."},
|
||||||
content: " formulated for you.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Ingredients",
|
text: "View Ingredients"},
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardFour
|
<ProductCardOne
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Radiance Serum", price: "$85", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/modern-glass-serum-bottle-with-elegant-d-1774858641118-68d352b4.png"},
|
||||||
name: "Radiance Serum",
|
|
||||||
price: "$85",
|
|
||||||
variant: "30ml",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/modern-glass-serum-bottle-with-elegant-d-1774858641118-68d352b4.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Hydrating Cream", price: "$65", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/a-rich-cream-jar-with-gold-trim-and-soft-1774858641615-2904fff1.png"},
|
||||||
name: "Hydrating Cream",
|
|
||||||
price: "$65",
|
|
||||||
variant: "50ml",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/a-rich-cream-jar-with-gold-trim-and-soft-1774858641615-2904fff1.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Clarifying Toner", price: "$45", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/a-delicate-toner-bottle-clean-glass-pack-1774858642535-3b459878.png"},
|
||||||
name: "Clarifying Toner",
|
|
||||||
price: "$45",
|
|
||||||
variant: "100ml",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/a-delicate-toner-bottle-clean-glass-pack-1774858642535-3b459878.png",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Essential Care"
|
title="Essential Care"
|
||||||
description="Premium treatments for daily rejuvenation."
|
description="Premium treatments for daily rejuvenation."
|
||||||
@@ -141,30 +103,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Sarah W.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-shot-of-a-person-with-clear-glo-1774858642823-a151fbfc.png?_wi=1"},
|
||||||
name: "Sarah W.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-shot-of-a-person-with-clear-glo-1774858642823-a151fbfc.png?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Michael L.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-shot-of-a-person-with-radiant-h-1774858642850-098163e8.png"},
|
||||||
name: "Michael L.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-shot-of-a-person-with-radiant-h-1774858642850-098163e8.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Elena R.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-of-person-with-hydrated-skin-so-1774858641259-74560ff0.png"},
|
||||||
name: "Elena R.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-of-person-with-hydrated-skin-so-1774858641259-74560ff0.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "David K.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-of-person-with-clear-healthy-sk-1774858641321-14d5480c.png"},
|
||||||
name: "David K.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-of-person-with-clear-healthy-sk-1774858641321-14d5480c.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Julia M.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-shot-of-a-person-with-clear-glo-1774858642823-a151fbfc.png?_wi=2"},
|
||||||
name: "Julia M.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BenVx8uguzidbO4Jt2cSl94SsR/close-up-shot-of-a-person-with-clear-glo-1774858642823-a151fbfc.png?_wi=2",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
cardTitle="Glow Stories"
|
cardTitle="Glow Stories"
|
||||||
cardTag="Our Community"
|
cardTag="Our Community"
|
||||||
@@ -178,20 +125,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "Are products organic?", content: "Yes, we prioritize ethically sourced, natural ingredients."},
|
||||||
title: "Are products organic?",
|
|
||||||
content: "Yes, we prioritize ethically sourced, natural ingredients.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "Shipping time?", content: "Standard delivery takes 3-5 business days."},
|
||||||
title: "Shipping time?",
|
|
||||||
content: "Standard delivery takes 3-5 business days.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Do you test on animals?", content: "Never. We are proudly cruelty-free."},
|
||||||
title: "Do you test on animals?",
|
|
||||||
content: "Never. We are proudly cruelty-free.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Need Help?"
|
title="Need Help?"
|
||||||
description="Answers to common skin care questions."
|
description="Answers to common skin care questions."
|
||||||
@@ -205,37 +143,25 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Shop",
|
label: "Shop", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Story",
|
label: "Story", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Support",
|
label: "Support", href: "#faq"},
|
||||||
href: "#faq",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Privacy",
|
label: "Privacy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms",
|
label: "Terms", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user