Update src/app/menu/page.tsx

This commit is contained in:
2026-03-27 07:15:42 +00:00
parent 0d03d830ea
commit f502cb5bed

View File

@@ -7,83 +7,56 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import { Phone } from "lucide-react";
export default function LandingPage() {
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="City Burger"
/>
</div>
<div id="menu-page-body" data-section="menu-page-body">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "1",
name: "Big Cheeseburger",
price: "25,000 UZS",
imageSrc: "http://img.b2bpic.net/free-photo/home-made-tasty-burgers_628469-332.jpg?_wi=2",
},
{
id: "2",
name: "Cheeseburger",
price: "18,000 UZS",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-burger-ingredients-slate-background_23-2148235015.jpg?_wi=2",
},
{
id: "3",
name: "French Fries",
price: "10,000 UZS",
imageSrc: "http://img.b2bpic.net/free-photo/french-fries-white-background_1339-376.jpg?_wi=2",
},
]}
title="Popular Menu"
description="Our most loved burgers and sides."
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="City Burger"
copyrightText="© 2025 City Burger Termez"
socialLinks={[
{
icon: Phone,
href: "tel:+998996700008",
ariaLabel: "Call us",
},
]}
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
brandName="City Burger"
/>
</div>
<div id="menu-page-body" data-section="menu-page-body">
<ProductCardThree
title="Full Menu"
description="Explore our delicious range of burgers and sides."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "m1", name: "Big Burger", price: "30,000 UZS", imageSrc: "http://img.b2bpic.net/free-photo/home-made-tasty-burgers_628469-332.jpg" },
{ id: "m2", name: "Big Cheeseburger", price: "25,000 UZS", imageSrc: "http://img.b2bpic.net/free-photo/top-view-burger-ingredients-slate-background_23-2148235015.jpg" },
{ id: "m3", name: "French Fries", price: "10,000 UZS", imageSrc: "http://img.b2bpic.net/free-photo/french-fries-white-background_1339-376.jpg" },
{ id: "m4", name: "Drink", price: "8,000 UZS", imageSrc: "http://img.b2bpic.net/free-photo/hands-holding-fresh-delicious-burger-with-french-fries-sauce-wooden-table_114579-84517.jpg" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="City Burger"
copyrightText="© 2025 City Burger Termez"
socialLinks={[{ icon: Phone, href: "tel:+998996700008", ariaLabel: "Call us" }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}