Update src/app/page.tsx

This commit is contained in:
2026-04-11 18:36:53 +00:00
parent 62a4b91c0d
commit 55e6b97eef

View File

@@ -25,189 +25,91 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "hero",
},
{
name: "Menu",
id: "menu",
},
{
name: "Reviews",
id: "reviews",
},
{
name: "Location",
id: "contact",
},
]}
brandName="Grill & Roll"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "hero" },
{ name: "Menu", id: "menu" },
{ name: "Reviews", id: "reviews" },
{ name: "Location", id: "contact" },
]}
brandName="Grill & Roll"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{
variant: "gradient-bars",
}}
title="Fresh & Delicious Bowls"
description="Authentic teriyaki bowls, fresh sushi, and hot ramen, made to order daily in Victorville."
buttons={[
{
text: "View Menu",
href: "#menu",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CDtcapaseWm76b2LEYiYeB0Rkw/uploaded-1775932537903-3qpt1zi2.jpg"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{ variant: "gradient-bars" }}
title="Fresh & Delicious Bowls"
description="Authentic teriyaki bowls, fresh sushi, and hot ramen, made to order daily in Victorville."
buttons={[{ text: "View Menu", href: "#menu" }]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CDtcapaseWm76b2LEYiYeB0Rkw/uploaded-1775932537903-3qpt1zi2.jpg"
/>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
animationType="slide-up"
textboxLayout="split"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
products={[
{
id: "p1",
brand: "Bowl",
name: "Chicken Bowl",
price: "$10.25",
rating: 5,
reviewCount: "12",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CDtcapaseWm76b2LEYiYeB0Rkw/uploaded-1775932537904-3ij8zfhp.jpg",
},
{
id: "p2",
brand: "Bowl",
name: "Beef Bowl",
price: "$12.45",
rating: 5,
reviewCount: "10",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CDtcapaseWm76b2LEYiYeB0Rkw/uploaded-1775932537904-lfuuyrxx.jpg",
},
{
id: "p3",
brand: "Sushi",
name: "California Roll",
price: "$11.95",
rating: 5,
reviewCount: "15",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CDtcapaseWm76b2LEYiYeB0Rkw/uploaded-1775932537904-ttydp2we.jpg",
},
{
id: "p4",
brand: "Ramen",
name: "Chicken Ramen",
price: "$11.25",
rating: 5,
reviewCount: "8",
imageSrc: "http://img.b2bpic.net/free-photo/asian-soup-near-spoon-chopsticks_23-2147762812.jpg",
},
{
id: "p5",
brand: "Side",
name: "Dumplings",
price: "$6.99",
rating: 5,
reviewCount: "20",
imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken_1203-8316.jpg",
},
{
id: "p6",
brand: "Side",
name: "Eggrolls",
price: "$6.99",
rating: 5,
reviewCount: "5",
imageSrc: "http://img.b2bpic.net/free-photo/raw-fresh-nigiri-sushi-roll_74190-6107.jpg",
},
]}
title="Our Signature Dishes"
description="Explore our favorite bowls, sushi rolls, and ramen."
/>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
animationType="slide-up"
textboxLayout="split"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
products={[
{ id: "p1", brand: "Bowl", name: "Chicken Bowl", price: "$10.25", rating: 5, reviewCount: "12", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CDtcapaseWm76b2LEYiYeB0Rkw/uploaded-1775932537904-3ij8zfhp.jpg" },
{ id: "p2", brand: "Bowl", name: "Beef Bowl", price: "$12.45", rating: 5, reviewCount: "10", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CDtcapaseWm76b2LEYiYeB0Rkw/uploaded-1775932537904-lfuuyrxx.jpg" },
{ id: "p3", brand: "Sushi", name: "California Roll", price: "$11.95", rating: 5, reviewCount: "15", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CDtcapaseWm76b2LEYiYeB0Rkw/uploaded-1775932537904-ttydp2we.jpg" },
{ id: "p4", brand: "Ramen", name: "Chicken Ramen", price: "$11.25", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/asian-soup-near-spoon-chopsticks_23-2147762812.jpg" },
{ id: "p5", brand: "Side", name: "Dumplings", price: "$6.99", rating: 5, reviewCount: "20", imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken_1203-8316.jpg" },
{ id: "p6", brand: "Side", name: "Eggrolls", price: "$6.99", rating: 5, reviewCount: "5", imageSrc: "http://img.b2bpic.net/free-photo/raw-fresh-nigiri-sushi-roll_74190-6107.jpg" },
]}
title="Our Signature Dishes"
description="Explore our favorite bowls, sushi rolls, and ramen."
/>
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Minerva Valerio",
handle: "@minerva",
testimonial: "This place is amazing, the food taste really good! Love it, definitely coming back.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-near-window-restaurant_23-2147936227.jpg",
},
{
id: "2",
name: "Linda Akter",
handle: "@linda",
testimonial: "I am obsessed with the food here, its so good. I crave the short rib rice bowl everyday.",
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-tasty-nutritious-food-delicious-homemade-lunch_185193-109954.jpg",
},
{
id: "3",
name: "James BillyGoat",
handle: "@jamesb",
testimonial: "Amazing food and Excellent service. The Owner's and Staff are very Friendly.",
imageSrc: "http://img.b2bpic.net/free-photo/holding-salmon-sushi-roll-with-chopsticks_114579-22029.jpg",
},
{
id: "4",
name: "Samuel H",
handle: "@samuelh",
testimonial: "Everything was amazing from the service down to the food. Glad to have found this gem.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-set-sushi-with-soy-sauce-blue-white_140725-12486.jpg",
},
{
id: "5",
name: "Liset Sanchez",
handle: "@liset",
testimonial: "Food is delicious everything was made fresh most definitely would be coming back!",
imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-salmon-rice-fresh-vegetables-poke-top-view-banner_127032-2416.jpg",
},
]}
title="What Our Customers Say"
description="Join our community of happy food lovers in Victorville."
/>
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Minerva Valerio", handle: "@minerva", testimonial: "This place is amazing, the food taste really good! Love it, definitely coming back.", imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-near-window-restaurant_23-2147936227.jpg" },
{ id: "2", name: "Linda Akter", handle: "@linda", testimonial: "I am obsessed with the food here, its so good. I crave the short rib rice bowl everyday.", imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-tasty-nutritious-food-delicious-homemade-lunch_185193-109954.jpg" },
{ id: "3", name: "James BillyGoat", handle: "@jamesb", testimonial: "Amazing food and Excellent service. The Owner's and Staff are very Friendly.", imageSrc: "http://img.b2bpic.net/free-photo/holding-salmon-sushi-roll-with-chopsticks_114579-22029.jpg" },
{ id: "4", name: "Samuel H", handle: "@samuelh", testimonial: "Everything was amazing from the service down to the food. Glad to have found this gem.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-set-sushi-with-soy-sauce-blue-white_140725-12486.jpg" },
{ id: "5", name: "Liset Sanchez", handle: "@liset", testimonial: "Food is delicious everything was made fresh most definitely would be coming back!", imageSrc: "http://img.b2bpic.net/free-photo/bowl-with-salmon-rice-fresh-vegetables-poke-top-view-banner_127032-2416.jpg" },
]}
title="What Our Customers Say"
description="Join our community of happy food lovers in Victorville."
/>
</div>
<div id="legal" data-section="legal">
<LegalSection />
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="full"
title="Legal Notices"
sections={[]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "glowing-orb",
}}
tag="Visit Us"
title="Grill & Roll Victorville"
description="14515 Mojave Dr, Victorville, CA. Open for takeout and dine-in."
buttons={[
{
text: "Order Online",
href: "https://www.doordash.com/store/grill-and-roll-victorville-34183181/74031397/",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
background={{ variant: "radial-gradient" }}
tag="Visit Us"
title="Grill & Roll Victorville"
description="14515 Mojave Dr, Victorville, CA. Open for takeout and dine-in."
buttons={[
{ text: "Order Online", href: "https://www.doordash.com/store/grill-and-roll-victorville-34183181/74031397/" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Grill & Roll"
copyrightText="© 2025 Grill & Roll Victorville"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Grill & Roll"
copyrightText="© 2025 Grill & Roll Victorville"
/>
</div>
</ReactLenis>
</ThemeProvider>
);