Merge version_1 into main #2
167
src/app/page.tsx
167
src/app/page.tsx
@@ -30,62 +30,42 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
name: "Products", id: "products"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "testimonials"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Crumb & Crunch"
|
||||
button={{
|
||||
text: "Shop Now", href: "#products"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Crumb & Crunch Artisanal Snacks"
|
||||
description="Handcrafted chips and biscuits made with love and natural ingredients. Taste the difference in every bite."
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg?_wi=1",
|
||||
imageAlt: "Artisanal snack spread",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg", imageAlt: "Artisanal snack spread"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg?_wi=2",
|
||||
imageAlt: "Packaging detail",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg", imageAlt: "Packaging detail"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg?_wi=3",
|
||||
imageAlt: "Fresh chips close up",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg", imageAlt: "Fresh chips close up"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg?_wi=4",
|
||||
imageAlt: "Assorted biscuits",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg", imageAlt: "Assorted biscuits"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg?_wi=5",
|
||||
imageAlt: "Production kitchen",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg", imageAlt: "Production kitchen"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg?_wi=6",
|
||||
imageAlt: "Satisfied snack lover",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg", imageAlt: "Satisfied snack lover"},
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
@@ -99,23 +79,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Sea Salt Potato Chips",
|
||||
price: "$6.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cooked-sliced-cauliflower-inside-plate-with-lemon-grey-light-wall_140725-38043.jpg",
|
||||
},
|
||||
id: "p1", name: "Sea Salt Potato Chips", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cooked-sliced-cauliflower-inside-plate-with-lemon-grey-light-wall_140725-38043.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Classic Butter Biscuits",
|
||||
price: "$8.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-vertical-shot-tasty-cookies-white-surface-with-chocolate-milk_181624-3981.jpg",
|
||||
},
|
||||
id: "p2", name: "Classic Butter Biscuits", price: "$8.50", imageSrc: "http://img.b2bpic.net/free-photo/closeup-vertical-shot-tasty-cookies-white-surface-with-chocolate-milk_181624-3981.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Spicy Veggie Chips",
|
||||
price: "$7.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-delicious-homemade-chips-pepper-bowl-mayonnaise-ketchup-newspaper-gray-table_140725-87112.jpg",
|
||||
},
|
||||
id: "p3", name: "Spicy Veggie Chips", price: "$7.50", imageSrc: "http://img.b2bpic.net/free-photo/side-view-delicious-homemade-chips-pepper-bowl-mayonnaise-ketchup-newspaper-gray-table_140725-87112.jpg"},
|
||||
]}
|
||||
title="Our Creations"
|
||||
description="Discover our range of handcrafted chips and biscuits."
|
||||
@@ -130,17 +98,11 @@ export default function LandingPage() {
|
||||
description="We believe in authentic flavors and simple, high-quality ingredients. From our kitchen to your snack bag, experience snacks as they should be."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Farm to Bag",
|
||||
description: "Sourced locally to ensure freshness.",
|
||||
},
|
||||
title: "Farm to Bag", description: "Sourced locally to ensure freshness."},
|
||||
{
|
||||
title: "No Preservatives",
|
||||
description: "Only real ingredients, no hidden additives.",
|
||||
},
|
||||
title: "No Preservatives", description: "Only real ingredients, no hidden additives."},
|
||||
{
|
||||
title: "Handcrafted",
|
||||
description: "Small batches for consistent quality.",
|
||||
},
|
||||
title: "Handcrafted", description: "Small batches for consistent quality."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/person-enjoying-dish-made-oysters_23-2150320457.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -154,45 +116,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Alice M.",
|
||||
handle: "@alice",
|
||||
testimonial: "The best biscuits I've ever had!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/expressive-woman-posing-outdoor_344912-3069.jpg?_wi=1",
|
||||
},
|
||||
id: "1", name: "Alice M.", handle: "@alice", testimonial: "The best biscuits I've ever had!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/expressive-woman-posing-outdoor_344912-3069.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Bob D.",
|
||||
handle: "@bob",
|
||||
testimonial: "These chips are perfectly crunchy.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-cup-coffee-waffle-sitting-bed_23-2147911790.jpg",
|
||||
},
|
||||
id: "2", name: "Bob D.", handle: "@bob", testimonial: "These chips are perfectly crunchy.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-cup-coffee-waffle-sitting-bed_23-2147911790.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Charlie P.",
|
||||
handle: "@charlie",
|
||||
testimonial: "I love the sea salt flavor.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-hipster-woman-eating-cookies_285396-1869.jpg",
|
||||
},
|
||||
id: "3", name: "Charlie P.", handle: "@charlie", testimonial: "I love the sea salt flavor.", rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-hipster-woman-eating-cookies_285396-1869.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Diana K.",
|
||||
handle: "@diana",
|
||||
testimonial: "Authentic and fresh flavors.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/authentic-person-eating-fresh-cheese_23-2150220462.jpg",
|
||||
},
|
||||
id: "4", name: "Diana K.", handle: "@diana", testimonial: "Authentic and fresh flavors.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/authentic-person-eating-fresh-cheese_23-2150220462.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Edward R.",
|
||||
handle: "@eddy",
|
||||
testimonial: "Great variety, always fresh!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/expressive-woman-posing-outdoor_344912-3069.jpg?_wi=2",
|
||||
},
|
||||
id: "5", name: "Edward R.", handle: "@eddy", testimonial: "Great variety, always fresh!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/expressive-woman-posing-outdoor_344912-3069.jpg"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="What People Say"
|
||||
@@ -206,20 +143,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Are your chips gluten-free?",
|
||||
content: "Yes, our potato chips are 100% gluten-free.",
|
||||
},
|
||||
id: "f1", title: "Are your chips gluten-free?", content: "Yes, our potato chips are 100% gluten-free."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Where do you source your ingredients?",
|
||||
content: "We source from local farms within 50 miles of our kitchen.",
|
||||
},
|
||||
id: "f2", title: "Where do you source your ingredients?", content: "We source from local farms within 50 miles of our kitchen."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "How long do the biscuits stay fresh?",
|
||||
content: "Our biscuits stay fresh for up to 3 weeks in an airtight container.",
|
||||
},
|
||||
id: "f3", title: "How long do the biscuits stay fresh?", content: "Our biscuits stay fresh for up to 3 weeks in an airtight container."},
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Have questions about our snacks? We have answers."
|
||||
@@ -231,44 +159,33 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Get In Touch"
|
||||
title="Want to partner with us?"
|
||||
description="We are always looking for new retail partners and snack lovers."
|
||||
buttons={[
|
||||
{
|
||||
text: "Send Message",
|
||||
href: "#",
|
||||
},
|
||||
text: "Send Message", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg?_wi=7"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg"
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
title: "Shop", items: [
|
||||
{
|
||||
label: "All Products",
|
||||
href: "#products",
|
||||
},
|
||||
label: "All Products", href: "#products"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user