Files
d7d8ac44-8693-4f33-be1a-501…/src/app/menu/page.tsx
2026-03-27 11:07:30 +00:00

124 lines
3.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="compact"
sizing="mediumSizeLargeTitles"
background="fluid"
cardStyle="layered-gradient"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "الرئيسية",
id: "/",
},
{
name: "عن المطعم",
id: "/about",
},
{
name: "قائمة الطعام",
id: "/menu",
},
{
name: "العروض",
id: "/offers",
},
{
name: "تواصل معنا",
id: "/contact",
},
]}
brandName="سلمة"
/>
</div>
<div id="menu-products" data-section="menu-products">
<ProductCardFour
animationType="slide-up"
textboxLayout="split"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "p1",
name: "شاورما دجاج سلمة",
price: "٢٥ ريال",
variant: "حجم كبير",
imageSrc: "http://img.b2bpic.net/free-photo/pita-bread-sandwiches-with-grilled-chicken-meat-avocado-tomato-cucumber-lettuce-served-wooden-table_2829-18559.jpg",
},
{
id: "p2",
name: "بروستد سلمة المقرمش",
price: "٣٥ ريال",
variant: "٤ قطع",
imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-wings-with-french-fries-tomato_74190-6310.jpg",
},
{
id: "p3",
name: "حمص بالطحينة",
price: "١٥ ريال",
variant: "صحن جانبي",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-nacho-chips-with-hummus-ketchup_23-2148562792.jpg",
},
]}
title="قائمة الطعام"
description="أشهى أطباق الشاورما والبروستد، محضرّة طازجة يومياً."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/contemplated-young-woman-sitting-restaurant-table-with-digital-tablet-cellphone-diary_23-2147936104.jpg?_wi=4"
columns={[
{
title: "سلمة",
items: [
{
label: "الرئيسية",
href: "/",
},
{
label: "تواصل معنا",
href: "/contact",
},
],
},
{
title: "القائمة",
items: [
{
label: "المنتجات",
href: "/menu",
},
{
label: "العروض",
href: "/offers",
},
],
},
]}
copyrightText="© 2025 مطعم سلمة"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}