Merge version_3 into main #2

Merged
bender merged 2 commits from version_3 into main 2026-04-24 10:22:28 +00:00
2 changed files with 65 additions and 4 deletions

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

@@ -0,0 +1,61 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="large"
background="grid"
cardStyle="gradient-bordered"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "/contact" },
]}
brandName="Royal Indian Tandoor"
/>
<div className="pt-32 pb-20">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{ id: "p1", brand: "Classic", name: "Butter Chicken", price: "$19.00", rating: 5, reviewCount: "250", imageSrc: "http://img.b2bpic.net/free-photo/butter-chicken-with-naan_141793-2200.jpg" },
{ id: "p2", brand: "Traditional", name: "Palak Paneer", price: "$16.00", rating: 5, reviewCount: "180", imageSrc: "http://img.b2bpic.net/free-photo/palak-paneer-dish_141793-2205.jpg" },
{ id: "p3", brand: "Spicy", name: "Lamb Vindaloo", price: "$21.00", rating: 4, reviewCount: "140", imageSrc: "http://img.b2bpic.net/free-photo/lamb-vindaloo-dish_141793-2210.jpg" },
{ id: "p4", brand: "Side", name: "Vegetable Samosa", price: "$8.00", rating: 5, reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-samosas_141793-2215.jpg" },
{ id: "p5", brand: "Classic", name: "Chicken Biryani", price: "$18.00", rating: 5, reviewCount: "420", imageSrc: "http://img.b2bpic.net/free-photo/chicken-biryani-plate_141793-2220.jpg" },
{ id: "p6", brand: "Side", name: "Garlic Naan", price: "$5.00", rating: 5, reviewCount: "500", imageSrc: "http://img.b2bpic.net/free-photo/garlic-naan-bread_141793-2225.jpg" },
]}
title="Our Full Menu"
description="Discover our complete selection of authentic Indian delicacies."
/>
</div>
<FooterBaseCard
logoText="Royal Indian Tandoor"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -34,7 +34,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "contact" },
]}
brandName="Royal Indian Tandoor"
@@ -45,7 +45,7 @@ export default function LandingPage() {
<HeroCarouselLogo
logoText="Authentic Indian Spices"
description="Discover the rich tapestry of Indian heritage with our traditional curries, aromatic biryanis, and fresh tandoori specialties."
buttons={[{ text: "Explore Menu", href: "#menu" }]}
buttons={[{ text: "Explore Menu", href: "/menu" }]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/chicken-tikka-masala-with-naan-bread-onion-peppers_141793-2144.jpg", imageAlt: "Chicken Tikka Masala" },
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-served-with-chutney-sambar_141793-2155.jpg", imageAlt: "South Indian Dosa" },
@@ -165,7 +165,7 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Royal Indian Tandoor"
columns={[
{ title: "Navigation", items: [{ label: "Menu", href: "#menu" }, { label: "About", href: "#about" }] },
{ title: "Navigation", items: [{ label: "Menu", href: "/menu" }, { label: "About", href: "#about" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>
@@ -173,4 +173,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}