Merge version_1_1776441525765 into main #2
@@ -9,182 +9,115 @@ import TestimonialSplitCards from '@/components/sections/testimonial/Testimonial
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarCentered
|
||||
logo="FLAY"
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
ctaButton={{
|
||||
text: "Shop Now",
|
||||
href: "/shop",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarCentered
|
||||
logo="FLAY"
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "About", href: "/about" },
|
||||
{ name: "Contact", href: "/contact" },
|
||||
]}
|
||||
ctaButton={{ text: "Shop Now", href: "/shop" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
tag="New Collection"
|
||||
title="Elevate Your Ritual"
|
||||
description="Artisan-crafted ceramic cups designed to bring warmth and intention to every sip."
|
||||
primaryButton={{
|
||||
text: "Shop Collection",
|
||||
href: "#shop",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Our Story",
|
||||
href: "/about",
|
||||
}}
|
||||
imageSrc="https://pixabay.com/get/g75567c317e1c5b7acee0c90a0ef7012c46ba04c158123773a760c2bc43765757857422af742dc0633b28d7cceaa6c611596235a0b1469ddf779bd7ba535f53ab_1280.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
tag="New Collection"
|
||||
title="Elevate Your Ritual"
|
||||
description="Artisan-crafted ceramic cups designed to bring warmth and intention to every sip."
|
||||
primaryButton={{ text: "Shop Collection", href: "#shop" }}
|
||||
secondaryButton={{ text: "Our Story", href: "/about" }}
|
||||
imageSrc="https://pixabay.com/get/g75567c317e1c5b7acee0c90a0ef7012c46ba04c158123773a760c2bc43765757857422af742dc0633b28d7cceaa6c611596235a0b1469ddf779bd7ba535f53ab_1280.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeaturesFlipCards
|
||||
tag="Quality"
|
||||
title="Why Choose Flay"
|
||||
description="Each piece is hand-thrown and fired to perfection."
|
||||
items={[
|
||||
{
|
||||
title: "Sustainable Clay",
|
||||
descriptions: [
|
||||
"Sourced ethically",
|
||||
"Low environmental impact",
|
||||
],
|
||||
imageSrc: "https://pixabay.com/get/gbb556468151dcebd64117f2c43dbba17ee15440c1ffefd609f4303b17e00bbf3c9d716fa8cf39ee68a79ed13e31f2023add94433d0f327c5e4c53a4beb4256c9_1280.jpg",
|
||||
},
|
||||
{
|
||||
title: "Artisan Craft",
|
||||
descriptions: [
|
||||
"Unique texture",
|
||||
"Handcrafted finishes",
|
||||
],
|
||||
imageSrc: "https://pixabay.com/get/gae64ee4d958170247f72a8d1df3e0113e2069a55466651e9a2c435037b7a1885a1ed996cb531696ca1329f095125178e9e01822b603042f7ec64a06971bde830_1280.jpg",
|
||||
},
|
||||
{
|
||||
title: "Durable Design",
|
||||
descriptions: [
|
||||
"Built to last",
|
||||
"Kiln fired strength",
|
||||
],
|
||||
imageSrc: "https://pixabay.com/get/ga8595df38ad5021c812fd3751c52d382f1b12a533fa60eaf79337bf6ef506a9484c3670a81b9133945af6129ab800882892abe57d27d636c3dadd7b953a1c98c_1280.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingSimpleCards
|
||||
tag="Pricing"
|
||||
title="Essential Sets"
|
||||
description="Find the perfect set for your kitchen or office."
|
||||
plans={[
|
||||
{
|
||||
tag: "Starter",
|
||||
price: "$35",
|
||||
description: "Single handcrafted mug",
|
||||
features: [
|
||||
"Durable clay",
|
||||
"Glazed finish",
|
||||
],
|
||||
},
|
||||
{
|
||||
tag: "Duo",
|
||||
price: "$60",
|
||||
description: "Perfect for couples",
|
||||
features: [
|
||||
"Two handcrafted mugs",
|
||||
"Matching design",
|
||||
],
|
||||
},
|
||||
{
|
||||
tag: "Family",
|
||||
price: "$110",
|
||||
description: "Complete collection",
|
||||
features: [
|
||||
"Four handcrafted mugs",
|
||||
"Complimentary shipping",
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofMarquee
|
||||
tag="Community"
|
||||
title="Featured By"
|
||||
description="Recognized by industry leaders in sustainable design."
|
||||
names={[
|
||||
"Dwell Magazine",
|
||||
"Kinfolk",
|
||||
"Minimalist Living",
|
||||
"Architectural Digest",
|
||||
"Green Home Monthly",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialSplitCards />
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimpleMedia
|
||||
brand="Flay Ceramics"
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
<div id="features" data-section="features">
|
||||
<FeaturesFlipCards
|
||||
tag="Quality"
|
||||
title="Why Choose Flay"
|
||||
description="Each piece is hand-thrown and fired to perfection."
|
||||
items={[
|
||||
{
|
||||
label: "All Cups",
|
||||
href: "/shop",
|
||||
title: "Sustainable Clay", descriptions: ["Sourced ethically", "Low environmental impact"],
|
||||
imageSrc: "https://pixabay.com/get/gbb556468151dcebd64117f2c43dbba17ee15440c1ffefd609f4303b17e00bbf3c9d716fa8cf39ee68a79ed13e31f2023add94433d0f327c5e4c53a4beb4256c9_1280.jpg"},
|
||||
{
|
||||
title: "Artisan Craft", descriptions: ["Unique texture", "Handcrafted finishes"],
|
||||
imageSrc: "https://pixabay.com/get/gae64ee4d958170247f72a8d1df3e0113e2069a55466651e9a2c435037b7a1885a1ed996cb531696ca1329f095125178e9e01822b603042f7ec64a06971bde830_1280.jpg"},
|
||||
{
|
||||
title: "Durable Design", descriptions: ["Built to last", "Kiln fired strength"],
|
||||
imageSrc: "https://pixabay.com/get/ga8595df38ad5021c812fd3751c52d382f1b12a533fa60eaf79337bf6ef506a9484c3670a81b9133945af6129ab800882892abe57d27d636c3dadd7b953a1c98c_1280.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingSimpleCards
|
||||
tag="Pricing"
|
||||
title="Essential Sets"
|
||||
description="Find the perfect set for your kitchen or office."
|
||||
plans={[
|
||||
{
|
||||
tag: "Starter", price: "$35", description: "Single handcrafted mug", features: ["Durable clay", "Glazed finish"],
|
||||
},
|
||||
{
|
||||
label: "New Arrivals",
|
||||
href: "/new",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Flay",
|
||||
items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "/about",
|
||||
tag: "Duo", price: "$60", description: "Perfect for couples", features: ["Two handcrafted mugs", "Matching design"],
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
tag: "Family", price: "$110", description: "Complete collection", features: ["Four handcrafted mugs", "Complimentary shipping"],
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyright="© 2024 Flay. All rights reserved."
|
||||
links={[
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://pixabay.com/get/g2bc2f8db30d5f0e3570e86ef180bc809fd8c506208682d1dbf2727f792ed3245fdb5129a5e9501cc21e6ec79573acf157ff1dff28093b9448d55676e7532467b_1280.jpg?_wi=1"
|
||||
/>
|
||||
</div>
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofMarquee
|
||||
tag="Community"
|
||||
title="Featured By"
|
||||
description="Recognized by industry leaders in sustainable design."
|
||||
names={[
|
||||
"Dwell Magazine", "Kinfolk", "Minimalist Living", "Architectural Digest", "Green Home Monthly"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialSplitCards
|
||||
tag="Stories"
|
||||
title="What Our Customers Say"
|
||||
description="Hear from our community of mindful drinkers."
|
||||
testimonials={[
|
||||
{ name: "Sarah J.", role: "Designer", text: "The quality is unmatched.", imageSrc: "https://pixabay.com/get/g75567c317e1c5b7acee0c90a0ef7012c46ba04c158123773a760c2bc43765757857422af742dc0633b28d7cceaa6c611596235a0b1469ddf779bd7ba535f53ab_1280.jpg" },
|
||||
{ name: "Mark L.", role: "Architect", text: "A beautiful addition to my desk.", imageSrc: "https://pixabay.com/get/g75567c317e1c5b7acee0c90a0ef7012c46ba04c158123773a760c2bc43765757857422af742dc0633b28d7cceaa6c611596235a0b1469ddf779bd7ba535f53ab_1280.jpg" },
|
||||
{ name: "Elena M.", role: "Chef", text: "Truly artisan craftsmanship.", imageSrc: "https://pixabay.com/get/g75567c317e1c5b7acee0c90a0ef7012c46ba04c158123773a760c2bc43765757857422af742dc0633b28d7cceaa6c611596235a0b1469ddf779bd7ba535f53ab_1280.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimpleMedia
|
||||
brand="Flay Ceramics"
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "All Cups", href: "/shop" },
|
||||
{ label: "New Arrivals", href: "/new" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Flay", items: [
|
||||
{ label: "Our Story", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyright="© 2024 Flay. All rights reserved."
|
||||
links={[
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
]}
|
||||
imageSrc="https://pixabay.com/get/g2bc2f8db30d5f0e3570e86ef180bc809fd8c506208682d1dbf2727f792ed3245fdb5129a5e9501cc21e6ec79573acf157ff1dff28093b9448d55676e7532467b_1280.jpg"
|
||||
/>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user