Add src/app/menu/page.tsx

This commit is contained in:
2026-04-08 17:58:27 +00:00
parent 115c42f9ce
commit dba7f01f7e

65
src/app/menu/page.tsx Normal file
View File

@@ -0,0 +1,65 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="mediumLarge"
background="noise"
cardStyle="glass-depth"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Portfolio", id: "/#portfolio" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "/#contact" },
]}
brandName="PixelStudio"
/>
</div>
<div className="pt-32 pb-20 px-6">
<FeatureCardNineteen
textboxLayout="default"
title="Our Street Kitchen Menu"
description="Experience authentic, bold street food flavors crafted with passion. From our signature tacos to hand-crafted desserts."
features={[
{ tag: "Appetizers", title: "Street Nachos", subtitle: "$12", description: "House-made corn chips, pico de gallo, guacamole, and queso fresco.", imageSrc: "http://img.b2bpic.net/free-photo/tasty-nachos-with-guacamole-pico-de-gallo_23-2148766432.jpg" },
{ tag: "Tacos", title: "Al Pastor Tacos", subtitle: "$14", description: "Marinated pork, roasted pineapple, cilantro, and onions.", imageSrc: "http://img.b2bpic.net/free-photo/tacos-with-marinated-pork_23-2148443729.jpg" },
{ tag: "Mains", title: "Burrito Bowl", subtitle: "$16", description: "Cilantro lime rice, black beans, choice of protein, and salsa.", imageSrc: "http://img.b2bpic.net/free-photo/burrito-bowl-with-vegetables-meat_23-2148443734.jpg" },
{ tag: "Beverages", title: "Fresh Horchata", subtitle: "$6", description: "Traditional rice milk drink with cinnamon and vanilla.", imageSrc: "http://img.b2bpic.net/free-photo/horchata-traditional-drink_23-2148443741.jpg" },
{ tag: "Desserts", title: "Churros & Chocolate", subtitle: "$9", description: "Crispy fried dough dusted in cinnamon sugar, served with ganache.", imageSrc: "http://img.b2bpic.net/free-photo/churros-with-chocolate-sauce_23-2148443748.jpg" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Kitchen", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
bottomLeftText="© 2024 PixelStudio Kitchen. Taste the Streets."
bottomRightText="All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}