Add src/app/mustapha/page.tsx

This commit is contained in:
2026-05-24 13:08:04 +00:00
parent 9047ab901d
commit 0152d9e43c

46
src/app/mustapha/page.tsx Normal file
View File

@@ -0,0 +1,46 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBase from '@/components/sections/footer/FooterBase';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function ProductsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Menu", id: "/#menu" },
{ name: "Products", id: "/mustapha" },
{ name: "Réservation", id: "/#reservation" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Thawenza"
/>
<div className="pt-32 pb-20">
<ProductCardFour
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
title="Our Products"
description="Browse our full selection of traditional offerings."
products={[
{ id: "p1", name: "Couscous Royal", price: "1500 DA", variant: "Plat", imageSrc: "http://img.b2bpic.net/free-photo/saj-made-from-vegetables-meat-charcoal_140725-3569.jpg" },
{ id: "p2", name: "Grillades Mixtes", price: "1800 DA", variant: "Plat", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-mushrooms-wooden-board_140725-761.jpg" },
]}
/>
</div>
<FooterBase
columns={[
{ title: "Liens", items: [{ label: "Menu", href: "/#menu" }, { label: "Products", href: "/mustapha" }, { label: "Réservation", href: "/#reservation" }] },
{ title: "Légal", items: [{ label: "Privacy", href: "#" }] },
]}
logoText="Thawenza"
/>
</ReactLenis>
</ThemeProvider>
);
}