Update src/app/menu/page.tsx

This commit is contained in:
2026-04-17 17:17:28 +00:00
parent 0448d78cec
commit 4e77c38323

View File

@@ -2,7 +2,6 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
@@ -39,6 +38,7 @@ export default function MenuPage() {
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Our Menu"
description="Wholesome meals prepared with love."
products={[
@@ -60,16 +60,10 @@ export default function MenuPage() {
{ id: "t4", name: "Tom W.", role: "Customer", company: "Local", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-table-full-food_23-2149261054.jpg" },
{ id: "t5", name: "Sam A.", role: "Visitor", company: "Local", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-table-full-food_23-2149261054.jpg" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Alices Restaurant"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Visit", href: "/contact" }] },
{ title: "Social", items: [{ label: "Facebook", href: "https://www.facebook.com/profile.php?id=100063723903618" }] }
]}
kpiItems={[{value: "15+", label: "Years"}, {value: "100%", label: "Homemade"}]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
</ReactLenis>