Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 692805ffbf | |||
| db3675b55e | |||
| 9669dff1e6 | |||
| e28d299899 |
124
src/app/page.tsx
124
src/app/page.tsx
@@ -29,43 +29,27 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "hero" },
|
||||||
name: "Home", id: "hero"},
|
{ name: "Our Chips & Biscuits", id: "products" },
|
||||||
{
|
{ name: "Our Story", id: "about" },
|
||||||
name: "Products", id: "products"},
|
{ name: "Reviews", id: "testimonials" },
|
||||||
{
|
{ name: "Contact", id: "contact" },
|
||||||
name: "About", id: "about"},
|
|
||||||
{
|
|
||||||
name: "Testimonials", id: "testimonials"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "contact"},
|
|
||||||
]}
|
]}
|
||||||
brandName="Crumb & Crunch"
|
brandName="Crumb & Crunch"
|
||||||
button={{
|
button={{
|
||||||
text: "Shop Now", href: "#products"
|
text: "Shop Now", href: "#products"
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
background={{
|
background={{ variant: "gradient-bars" }}
|
||||||
variant: "gradient-bars"}}
|
|
||||||
title="Crumb & Crunch Artisanal Snacks"
|
title="Crumb & Crunch Artisanal Snacks"
|
||||||
description="Handcrafted chips and biscuits made with love and natural ingredients. Taste the difference in every bite."
|
description="Quick, delicious, and handcrafted. Your favorite chips and biscuits, delivered with love."
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-cereals-pink-milk-bottle_23-2147961992.jpg?_wi=1", imageAlt: "Snack selection" },
|
||||||
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?_wi=4", imageAlt: "Biscuit variety" },
|
||||||
{
|
|
||||||
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?_wi=3", 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?_wi=5", 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"},
|
|
||||||
]}
|
]}
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
/>
|
/>
|
||||||
@@ -78,15 +62,12 @@ export default function LandingPage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{ id: "c1", name: "Crispy Sea Salt Chips", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/side-view-delicious-homemade-chips-pepper-bowl-mayonnaise-ketchup-newspaper-gray-table_140725-87112.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: "b1", name: "Classic Butter Biscuit", price: "$6.50", imageSrc: "http://img.b2bpic.net/free-photo/closeup-vertical-shot-tasty-cookies-white-surface-with-chocolate-milk_181624-3981.jpg" },
|
||||||
{
|
{ id: "c2", name: "Spicy Chili Chips", price: "$5.50", 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: "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"
|
title="Fast Snacks, Big Flavor"
|
||||||
description="Discover our range of handcrafted chips and biscuits."
|
description="Browse our freshly baked biscuits and perfectly salted chips."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -94,15 +75,11 @@ export default function LandingPage() {
|
|||||||
<SplitAbout
|
<SplitAbout
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Crafted with Passion"
|
title="Quality in Minutes"
|
||||||
description="We believe in authentic flavors and simple, high-quality ingredients. From our kitchen to your snack bag, experience snacks as they should be."
|
description="We specialize in fast, artisanal snacks made from local ingredients. No waiting—just crunching."
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{ title: "Locally Made", description: "Freshly baked daily." },
|
||||||
title: "Farm to Bag", description: "Sourced locally to ensure freshness."},
|
{ title: "Natural Ingredients", description: "Nothing artificial, ever." },
|
||||||
{
|
|
||||||
title: "No Preservatives", description: "Only real ingredients, no hidden additives."},
|
|
||||||
{
|
|
||||||
title: "Handcrafted", description: "Small batches for consistent quality."},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/person-enjoying-dish-made-oysters_23-2150320457.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/person-enjoying-dish-made-oysters_23-2150320457.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -115,25 +92,12 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Sam T.", handle: "@samt", testimonial: "The fastest snack delivery and the crunchiest chips!", rating: 5 },
|
||||||
id: "1", name: "Alice M.", handle: "@alice", testimonial: "The best biscuits I've ever had!", rating: 5,
|
{ id: "2", name: "Linda R.", handle: "@lindar", testimonial: "Obsessed with the butter biscuits.", rating: 5 },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/expressive-woman-posing-outdoor_344912-3069.jpg?_wi=1"},
|
|
||||||
{
|
|
||||||
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: "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"},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
title="What People Say"
|
title="Loved by Snackers"
|
||||||
description="Join our community of snack enthusiasts."
|
description="See why our community keeps coming back for more."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -142,15 +106,11 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "f1", title: "How fast is delivery?", content: "We aim for same-day delivery on all local orders." },
|
||||||
id: "f1", title: "Are your chips gluten-free?", content: "Yes, our potato chips are 100% gluten-free."},
|
{ id: "f2", title: "Are they organic?", content: "Yes, we use 100% organic ingredients." },
|
||||||
{
|
|
||||||
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."},
|
|
||||||
]}
|
]}
|
||||||
title="Common Questions"
|
title="Quick Answers"
|
||||||
description="Have questions about our snacks? We have answers."
|
description="Everything you need to know about our snacks."
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -158,14 +118,12 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{ variant: "plain" }}
|
||||||
variant: "plain"}}
|
tag="Ready to Snack?"
|
||||||
tag="Get In Touch"
|
title="Get Your Chips Today"
|
||||||
title="Want to partner with us?"
|
description="Place your order or reach out for catering inquiries."
|
||||||
description="We are always looking for new retail partners and snack lovers."
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Contact Us", href: "#contact" },
|
||||||
text: "Send Message", href: "#"},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -174,24 +132,12 @@ export default function LandingPage() {
|
|||||||
<FooterMedia
|
<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?_wi=7"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Shop", items: [{ label: "Chips", href: "#" }, { label: "Biscuits", href: "#" }] },
|
||||||
title: "Shop", items: [
|
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Contact", href: "#contact" }] },
|
||||||
{
|
|
||||||
label: "All Products", href: "#products"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Company", items: [
|
|
||||||
{
|
|
||||||
label: "About Us", href: "#about"},
|
|
||||||
{
|
|
||||||
label: "Contact", href: "#contact"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user