Merge version_1 into main #1
210
src/app/page.tsx
210
src/app/page.tsx
@@ -29,22 +29,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Go Grill"
|
||||
/>
|
||||
@@ -52,41 +40,19 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
background="gradient-bars"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Hot. Fresh. Irresistible."
|
||||
description="Tacos, burgers, cheesy pasta, and more — made fresh, served fast. Experience the grill perfection."
|
||||
tag="Grilled to Perfection"
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{ text: "Order Now", href: "/menu" },
|
||||
{ text: "View Menu", href: "/menu" },
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-fat-bread-beef-gourmet_1122-2437.jpg",
|
||||
imageAlt: "Sizzling Burger on grill",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-fat-bread-beef-gourmet_1122-2437.jpg", imageAlt: "Sizzling Burger on grill"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cheeseburger-cutting-board-with-knife_23-2148784512.jpg",
|
||||
imageAlt: "Loaded Burger Close-up",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-cutting-burger-with-egg_23-2148678848.jpg",
|
||||
imageAlt: "Front view male cutting burger with egg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/juicy-double-cheeseburger_23-2151950553.jpg",
|
||||
imageAlt: "Juicy double cheeseburger",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-burger-with-buns-cheese_23-2150887818.jpg",
|
||||
imageAlt: "View of delicious burger with buns and cheese",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cheeseburger-cutting-board-with-knife_23-2148784512.jpg", imageAlt: "Loaded Burger Close-up"}
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
rating={5}
|
||||
@@ -101,42 +67,9 @@ export default function LandingPage() {
|
||||
gridVariant="one-large-left-three-stacked-right"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Tacos",
|
||||
price: "$8.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-tacos-plate_23-2150831035.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Burgers",
|
||||
price: "$12.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-cheeseburger-topped-with-sesame-seeds_140725-3709.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Cheese Pasta",
|
||||
price: "$10.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/authentic-italian-pasta_24972-2338.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Cheese Noodles",
|
||||
price: "$9.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-mimosa-salad-with-eggs-potato-chicken-inside-plate-dark-blue-surface-cuisine-holiday-birthday-food-meal-photo-kitchen-color_179666-24557.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Majioto Drink",
|
||||
price: "$4.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-arrangement-spanish-food_23-2149157454.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Grilled Combo",
|
||||
price: "$15.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-cheeseburger-with-tomato-onion-fries-generative-ai_188544-36987.jpg",
|
||||
},
|
||||
{ id: "1", name: "Tacos", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-tacos-plate_23-2150831035.jpg" },
|
||||
{ id: "2", name: "Burgers", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/black-cheeseburger-topped-with-sesame-seeds_140725-3709.jpg" },
|
||||
{ id: "3", name: "Cheese Pasta", price: "$10.99", imageSrc: "http://img.b2bpic.net/free-photo/authentic-italian-pasta_24972-2338.jpg" }
|
||||
]}
|
||||
title="Our Best Sellers"
|
||||
description="Hand-picked favorites grilled to perfection."
|
||||
@@ -147,29 +80,12 @@ export default function LandingPage() {
|
||||
<FeatureCardTwentyNine
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Freshly Grilled",
|
||||
description: "Every dish is cooked over open fire.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-veggie-burger-with-black-buns-cutting-board_23-2148784540.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/hamburger_1203-3513.jpg",
|
||||
buttonText: "See More",
|
||||
},
|
||||
{
|
||||
title: "Cheesy Flavors",
|
||||
description: "Loaded with rich, melted goodness.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-bolognese-tomato-sesame-parmesan-pepper-top-view_141793-3193.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/seafood-fettuccini-with-creamy-sauce-parmesan-topped-with-cherry-tomato-dill_140725-1612.jpg",
|
||||
buttonText: "See More",
|
||||
},
|
||||
{
|
||||
title: "Fast Service",
|
||||
description: "Get your food in record time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/refreshing-cocktail-with-ice-cubes-1_140725-8774.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/fresh-lemonade-with-blue-background-blue-background_23-2148275317.jpg",
|
||||
buttonText: "See More",
|
||||
},
|
||||
{ title: "Freshly Grilled", description: "Every dish is cooked over open fire.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-veggie-burger-with-black-buns-cutting-board_23-2148784540.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/hamburger_1203-3513.jpg", buttonText: "See More" },
|
||||
{ title: "Cheesy Flavors", description: "Loaded with rich, melted goodness.", imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-bolognese-tomato-sesame-parmesan-pepper-top-view_141793-3193.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/seafood-fettuccini-with-creamy-sauce-parmesan-topped-with-cherry-tomato-dill_140725-1612.jpg", buttonText: "See More" },
|
||||
{ title: "Fast Service", description: "Get your food in record time.", imageSrc: "http://img.b2bpic.net/free-photo/refreshing-cocktail-with-ice-cubes-1_140725-8774.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/fresh-lemonade-with-blue-background-blue-background_23-2148275317.jpg", buttonText: "See More" }
|
||||
]}
|
||||
title="Why Everyone Loves Go Grill"
|
||||
description="We don't just cook; we create experiences."
|
||||
@@ -181,14 +97,7 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Loaded Burgers",
|
||||
"Melting Cheese",
|
||||
"Fresh Tacos",
|
||||
"Cold Drinks",
|
||||
"Fire Grilled",
|
||||
"Gourmet Bites",
|
||||
"Artisan Sauce",
|
||||
]}
|
||||
"Loaded Burgers", "Melting Cheese", "Fresh Tacos", "Cold Drinks", "Fire Grilled", "Gourmet Bites", "Artisan Sauce"]}
|
||||
title="Food Gallery"
|
||||
description="Visualizing your cravings."
|
||||
/>
|
||||
@@ -199,46 +108,8 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Great Experience",
|
||||
quote: "Best burgers in town!",
|
||||
name: "Sarah",
|
||||
role: "Foodie",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-girl-shows-okay-ok-signs-look-satisfied-recommend-good-company-perfect-quality-praise-good-job-well-done-standing-pleased-against-white-background_176420-54380.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Amazing Tacos",
|
||||
quote: "The tacos are amazing 🔥",
|
||||
name: "Michael",
|
||||
role: "Local",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-handsome-man-isolated_273609-35810.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Fast & Tasty",
|
||||
quote: "Fast and delicious every time",
|
||||
name: "Emily",
|
||||
role: "Regular",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-with-long-blonde-hair-holding-delicious-chocolate-muffin-hand_23-2147974685.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Top Notch",
|
||||
quote: "Loved the pasta flavor profile.",
|
||||
name: "David",
|
||||
role: "Critic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-pleased-adorable-dark-skinned-african-american-female-sits-comfortable-couch-holds-soft-cushion_273609-3094.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Must Try",
|
||||
quote: "The cheese noodles are life changing.",
|
||||
name: "Jessica",
|
||||
role: "Fan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg",
|
||||
},
|
||||
{ id: "1", title: "Great Experience", quote: "Best burgers in town!", name: "Sarah", role: "Foodie", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-girl-shows-okay-ok-signs-look-satisfied-recommend-good-company-perfect-quality-praise-good-job-well-done-standing-pleased-against-white-background_176420-54380.jpg" },
|
||||
{ id: "2", title: "Amazing Tacos", quote: "The tacos are amazing 🔥", name: "Michael", role: "Local", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-handsome-man-isolated_273609-35810.jpg" }
|
||||
]}
|
||||
title="Customer Reviews"
|
||||
description="What our hungry fans say."
|
||||
@@ -248,25 +119,14 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Visit Us"
|
||||
title="Order in Seconds"
|
||||
description="Ready to eat? Get your Go Grill now."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Online",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
text: "WhatsApp Order",
|
||||
href: "https://wa.me/123456789",
|
||||
},
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:+123456789",
|
||||
},
|
||||
{ text: "Order Online", href: "/menu" },
|
||||
{ text: "WhatsApp Order", href: "https://wa.me/123456789" },
|
||||
{ text: "Call Now", href: "tel:+123456789" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -275,28 +135,8 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Go Grill"
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Tacos",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Burgers",
|
||||
href: "/menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Menu", items: [{ label: "Tacos", href: "/menu" }, { label: "Burgers", href: "/menu" }] },
|
||||
{ title: "About", items: [{ label: "Our Story", href: "/about" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user