Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f839aeba16 | |||
| 48f9131c8f | |||
| 268ff308e0 | |||
| fb656d9f41 | |||
| cc5e2aea44 | |||
| c4d5756d6b | |||
| 8779d5ca63 | |||
| 0474dc645f |
@@ -98,12 +98,12 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Cyber Burger", price: "$12.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=26fp4d" },
|
||||
{ id: "p2", name: "Circuit Chicken", price: "$10.49", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qdixu5" },
|
||||
{ id: "p3", name: "Neon Tacos", price: "$8.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=spo328" },
|
||||
{ id: "p4", name: "Zen Protein Bowl", price: "$14.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=akr3b3" },
|
||||
{ id: "p5", name: "Data Fries", price: "$5.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=st1wp6" },
|
||||
{ id: "p6", name: "Pixel Shake", price: "$6.49", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0am2ud" }
|
||||
{ id: "p1", name: "Cyber Burger", price: "$12.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=26fp4d", onProductClick: () => alert('Ordering Cyber Burger...') },
|
||||
{ id: "p2", name: "Circuit Chicken", price: "$10.49", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qdixu5", onProductClick: () => alert('Ordering Circuit Chicken...') },
|
||||
{ id: "p3", name: "Neon Tacos", price: "$8.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=spo328", onProductClick: () => alert('Ordering Neon Tacos...') },
|
||||
{ id: "p4", name: "Zen Protein Bowl", price: "$14.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=akr3b3", onProductClick: () => alert('Ordering Zen Protein Bowl...') },
|
||||
{ id: "p5", name: "Data Fries", price: "$5.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=st1wp6", onProductClick: () => alert('Ordering Data Fries...') },
|
||||
{ id: "p6", name: "Pixel Shake", price: "$6.49", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0am2ud", onProductClick: () => alert('Ordering Pixel Shake...') }
|
||||
]}
|
||||
title="Our Signature Menu"
|
||||
description="Experience flavors engineered for ultimate satisfaction."
|
||||
@@ -121,7 +121,7 @@ export default function LandingPage() {
|
||||
{ id: "m3", value: "100%", title: "Freshness Rate", items: ["Local sourcing", "Just-in-time prep"] }
|
||||
]}
|
||||
title="Engineered Efficiency"
|
||||
description="Our operational speed outperforms standard standards."
|
||||
description="Setting new industry standards for dining performance."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -146,8 +146,8 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
title="Join the Movement"
|
||||
description="Partner with us or get updates on new tech locations."
|
||||
title="Join Our VIP List"
|
||||
description="Get exclusive early access to new locations and tech updates before everyone else."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name" },
|
||||
{ name: "email", type: "email", placeholder: "Your Email" }
|
||||
@@ -168,4 +168,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user