Update src/app/menu/page.tsx

This commit is contained in:
2026-04-15 16:49:03 +00:00
parent f0d77c25bd
commit faf4b5f4e5

View File

@@ -6,8 +6,9 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import { Sprout, WheatOff, ChefHat, Scale } from "lucide-react";
export default function LandingPage() {
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -25,30 +26,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Contact",
id: "/contact",
},
{
name: "Order Online",
id: "/order",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
{ name: "Order Online", id: "/order" },
]}
brandName="Lollys Food Joint"
/>
@@ -63,24 +46,8 @@ export default function LandingPage() {
title="Full Menu"
description="See our complete list of offerings."
products={[
{
id: "m1",
brand: "Burger",
name: "BBQ Burger",
price: "$13.99",
rating: 5,
reviewCount: "50",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-cheeseburger-grilled-beef-patty-with-cheese-lettuce-burger-buns_141793-4806.jpg",
},
{
id: "m2",
brand: "Sides",
name: "Onion Rings",
price: "$4.99",
rating: 4,
reviewCount: "30",
imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-potatoes-served-with-onions-tomatoes-greens_141793-1068.jpg",
},
{ id: "m1", brand: "Burger", name: "BBQ Burger", price: "$13.99", rating: 5, reviewCount: "50", imageSrc: "http://img.b2bpic.net/free-photo/side-view-cheeseburger-grilled-beef-patty-with-cheese-lettuce-burger-buns_141793-4806.jpg" },
{ id: "m2", brand: "Sides", name: "Onion Rings", price: "$4.99", rating: 4, reviewCount: "30", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-potatoes-served-with-onions-tomatoes-greens_141793-1068.jpg" },
]}
/>
</div>
@@ -92,34 +59,10 @@ export default function LandingPage() {
title="Dietary Options"
description="We cater to all tastes."
features={[
{
title: "Vegan",
description: "Plant-based goodness.",
buttonIcon: "Sprout",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-realistic-burger_23-2150902326.jpg?_wi=1",
imageAlt: "Delicious realistic burger",
},
{
title: "Gluten Free",
description: "Delicious choices.",
buttonIcon: "WheatOff",
imageSrc: "http://img.b2bpic.net/free-photo/hamburger-chips_23-2147695734.jpg?_wi=3",
imageAlt: "Delicious realistic burger",
},
{
title: "Halal",
description: "Authentic quality.",
buttonIcon: "ChefHat",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-street-cafe-close-up_169016-43231.jpg?_wi=3",
imageAlt: "Delicious realistic burger",
},
{
title: "Low Calorie",
description: "Healthy alternatives.",
buttonIcon: "Scale",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43235.jpg?_wi=3",
imageAlt: "Delicious realistic burger",
},
{ title: "Vegan", description: "Plant-based goodness.", buttonIcon: Sprout, imageSrc: "http://img.b2bpic.net/free-photo/delicious-realistic-burger_23-2150902326.jpg", imageAlt: "Delicious realistic burger" },
{ title: "Gluten Free", description: "Delicious choices.", buttonIcon: WheatOff, imageSrc: "http://img.b2bpic.net/free-photo/hamburger-chips_23-2147695734.jpg", imageAlt: "Delicious realistic burger" },
{ title: "Halal", description: "Authentic quality.", buttonIcon: ChefHat, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-street-cafe-close-up_169016-43231.jpg", imageAlt: "Delicious realistic burger" },
{ title: "Low Calorie", description: "Healthy alternatives.", buttonIcon: Scale, imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43235.jpg", imageAlt: "Delicious realistic burger" },
]}
/>
</div>
@@ -127,32 +70,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Menu",
href: "/menu",
},
],
},
{
title: "Order",
items: [
{
label: "Order Online",
href: "/order",
},
{
label: "Contact Us",
href: "/contact",
},
],
},
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Menu", href: "/menu" }] },
{ title: "Order", items: [{ label: "Order Online", href: "/order" }, { label: "Contact Us", href: "/contact" }] },
]}
bottomLeftText="© 2024 Lolly's Food Joint"
bottomRightText="All rights reserved."