Update src/app/page.tsx
This commit is contained in:
259
src/app/page.tsx
259
src/app/page.tsx
@@ -29,24 +29,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "الرئيسية",
|
||||
id: "#home",
|
||||
},
|
||||
{
|
||||
name: "من نحن",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "القائمة",
|
||||
id: "#menu",
|
||||
},
|
||||
{
|
||||
name: "الحجوزات",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "الرئيسية", id: "#home" },
|
||||
{ name: "من نحن", id: "#about" },
|
||||
{ name: "القائمة", id: "#menu" },
|
||||
{ name: "الحجوزات", id: "#contact" }
|
||||
]}
|
||||
brandName="مطعم مندي ومشويات الدوسري"
|
||||
button={{ text: "احجز الآن", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -55,77 +44,18 @@ export default function LandingPage() {
|
||||
title="مطعم مندي ومشويات الدوسري"
|
||||
description="تجربة طعام تجمع بين الأصالة الشرقية والحداثة الغربية. نعدكم بتقديم أشهى أصناف المندي والمشويات بأعلى معايير الضيافة والجودة."
|
||||
testimonials={[
|
||||
{
|
||||
name: "أحمد العتيبي",
|
||||
role: "زبون دائم",
|
||||
testimonial: "تجربة فريدة ومذاق لا ينسى، المندي لديهم هو الأفضل في المملكة.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-pasta-with-grilled-chicken-pieces-cherry-tomatoes_114579-1454.jpg",
|
||||
},
|
||||
{
|
||||
name: "سارة محمد",
|
||||
role: "ذواقة طعام",
|
||||
testimonial: "جودة الطعام والخدمة تفوق التوقعات، مكان رائع للعائلة.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-paying-with-her-phone-via-contactless-payment-while-having-lunch-with-boyfriend-bar_637285-647.jpg",
|
||||
},
|
||||
{
|
||||
name: "خالد عبد الله",
|
||||
role: "خبير طعام",
|
||||
testimonial: "توازن مثالي بين البهارات والنكهة الأصيلة، مشويات طازجة ولذيذة.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520106.jpg",
|
||||
},
|
||||
{
|
||||
name: "نورة العلي",
|
||||
role: "زبونة مميزة",
|
||||
testimonial: "أحببت الأجواء والضيافة، بالتأكيد سأكرر الزيارة مرة أخرى.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-angry-expression_1194-1424.jpg",
|
||||
},
|
||||
{
|
||||
name: "فهد السالم",
|
||||
role: "عاشق للمشويات",
|
||||
testimonial: "من أفضل الأماكن التي تقدم المشويات بلمسة احترافية.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/afro-woman-joying-holds-two-peppers_8353-10029.jpg",
|
||||
},
|
||||
{ name: "أحمد العتيبي", handle: "@ahmed", testimonial: "تجربة فريدة ومذاق لا ينسى، المندي لديهم هو الأفضل في المملكة.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-pasta-with-grilled-chicken-pieces-cherry-tomatoes_114579-1454.jpg" },
|
||||
{ name: "سارة محمد", handle: "@sara", testimonial: "جودة الطعام والخدمة تفوق التوقعات، مكان رائع للعائلة.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-paying-with-her-phone-via-contactless-payment-while-having-lunch-with-boyfriend-bar_637285-647.jpg" },
|
||||
{ name: "خالد عبد الله", handle: "@khalid", testimonial: "توازن مثالي بين البهارات والنكهة الأصيلة، مشويات طازجة ولذيذة.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520106.jpg" },
|
||||
{ name: "نورة العلي", handle: "@noura", testimonial: "أحببت الأجواء والضيافة، بالتأكيد سأكرر الزيارة مرة أخرى.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-angry-expression_1194-1424.jpg" },
|
||||
{ name: "فهد السالم", handle: "@fahad", testimonial: "من أفضل الأماكن التي تقدم المشويات بلمسة احترافية.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/afro-woman-joying-holds-two-peppers_8353-10029.jpg" }
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "احجز طاولتك الآن",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "استعرض القائمة",
|
||||
href: "#menu",
|
||||
},
|
||||
{ text: "احجز طاولتك الآن", href: "#contact" },
|
||||
{ text: "استعرض القائمة", href: "#menu" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/twigs-leaves-near-lamp-cutlery_23-2147811213.jpg"
|
||||
imageAlt="أطباقنا المميزة"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/plate-set-with-fork-spoon-knife_140725-1835.jpg",
|
||||
alt: "Diner portrait 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/wonderful-wedding-table-amazing-restaurant_8353-9875.jpg",
|
||||
alt: "Diner portrait 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg",
|
||||
alt: "Diner portrait 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/eggplant-caviar-with-glass-orange-juice_140725-3602.jpg",
|
||||
alt: "Diner portrait 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/alcohol-is-ready-festive-table_8353-9291.jpg",
|
||||
alt: "Diner portrait 5",
|
||||
},
|
||||
]}
|
||||
avatarText="انضموا إلى آلاف الزبائن الراضين"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -136,21 +66,13 @@ export default function LandingPage() {
|
||||
title="قصتنا مع المذاق الأصيل"
|
||||
description="منذ نشأتنا، ونحن نحرص على تقديم أفضل ما في المطبخ الشرقي والغربي. نعتمد على أجود المكونات الطازجة لنضمن لكم رحلة طعام فريدة من نوعها تلبي تطلعاتكم."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "مكونات طازجة",
|
||||
description: "ننتقي أفضل اللحوم والخضروات يومياً.",
|
||||
},
|
||||
{
|
||||
title: "خبرة عريقة",
|
||||
description: "طهاة متخصصون في الأطباق الشرقية والغربية.",
|
||||
},
|
||||
{
|
||||
title: "ضيافة فاخرة",
|
||||
description: "نقدم خدمة تليق بكم في أجواء مريحة وأنيقة.",
|
||||
},
|
||||
{ title: "مكونات طازجة", description: "ننتقي أفضل اللحوم والخضروات يومياً." },
|
||||
{ title: "خبرة عريقة", description: "طهاة متخصصون في الأطباق الشرقية والغربية." },
|
||||
{ title: "ضيافة فاخرة", description: "نقدم خدمة تليق بكم في أجواء مريحة وأنيقة." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-handsome-cook-chef-uniform-holding-plate-with-vegetables-looking-them-isolated-white-space_141793-45195.jpg"
|
||||
imageAlt="طهاة الدوسري"
|
||||
mediaAnimation="none"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -161,42 +83,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "مندي لحم دوسري",
|
||||
price: "٨٥ ريال",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-buns-lie-white-plates-with-golden-design_8353-798.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "مشويات مشكلة",
|
||||
price: "٦٠ ريال",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-ketchup-barberry-parsley-onion-side-view_141793-3124.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "مقبلات شرقية",
|
||||
price: "٣٥ ريال",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-kebab-with-grilled-vegetables-barbecque-sauce_114579-2870.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "باستا إيطالية",
|
||||
price: "٤٥ ريال",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meat-salad-with-vegetable_93675-132327.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "مشروبات منعشة",
|
||||
price: "٢٠ ريال",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-plov-with-different-raisins-dark-space_140725-97889.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "حلويات شرقية",
|
||||
price: "٢٥ ريال",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-close-up-view-pilaf-bowls-colorful-spices-pilaf-tablecloth-lace-doily_140725-78653.jpg",
|
||||
},
|
||||
{ id: "1", name: "مندي لحم دوسري", price: "٨٥ ريال", imageSrc: "http://img.b2bpic.net/free-photo/tasty-buns-lie-white-plates-with-golden-design_8353-798.jpg" },
|
||||
{ id: "2", name: "مشويات مشكلة", price: "٦٠ ريال", imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-ketchup-barberry-parsley-onion-side-view_141793-3124.jpg" },
|
||||
{ id: "3", name: "مقبلات شرقية", price: "٣٥ ريال", imageSrc: "http://img.b2bpic.net/free-photo/chicken-kebab-with-grilled-vegetables-barbecque-sauce_114579-2870.jpg" },
|
||||
{ id: "4", name: "باستا إيطالية", price: "٤٥ ريال", imageSrc: "http://img.b2bpic.net/free-photo/meat-salad-with-vegetable_93675-132327.jpg" },
|
||||
{ id: "5", name: "مشروبات منعشة", price: "٢٠ ريال", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-plov-with-different-raisins-dark-space_140725-97889.jpg" },
|
||||
{ id: "6", name: "حلويات شرقية", price: "٢٥ ريال", imageSrc: "http://img.b2bpic.net/free-photo/top-close-up-view-pilaf-bowls-colorful-spices-pilaf-tablecloth-lace-doily_140725-78653.jpg" }
|
||||
]}
|
||||
title="قائمة الطعام"
|
||||
description="استكشفوا تنوع أطباقنا التي صممت خصيصاً لإرضاء شغفكم بالمذاق."
|
||||
@@ -208,47 +100,13 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "أحمد العتيبي",
|
||||
role: "زبون",
|
||||
company: "عميل مخلص",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brazilian-family-enjoying-meal-together_23-2151156162.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "سارة محمد",
|
||||
role: "ذواقة",
|
||||
company: "عميل",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mixed-vegetable-salad-with-white-cheese_140725-4412.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "خالد عبد الله",
|
||||
role: "خبير",
|
||||
company: "عميل",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-restaurant_23-2148006619.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "نورة العلي",
|
||||
role: "زبونة",
|
||||
company: "عميل",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-happy-expression_1194-1350.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "فهد السالم",
|
||||
role: "محبي الأكل",
|
||||
company: "عميل",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-talking-her-long-distance-lover_23-2149289491.jpg",
|
||||
},
|
||||
{ id: "1", name: "أحمد العتيبي", role: "زبون", company: "عميل مخلص", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/brazilian-family-enjoying-meal-together_23-2151156162.jpg" },
|
||||
{ id: "2", name: "سارة محمد", role: "ذواقة", company: "عميل", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/mixed-vegetable-salad-with-white-cheese_140725-4412.jpg" },
|
||||
{ id: "3", name: "خالد عبد الله", role: "خبير", company: "عميل", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-restaurant_23-2148006619.jpg" },
|
||||
{ id: "4", name: "نورة العلي", role: "زبونة", company: "عميل", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-happy-expression_1194-1350.jpg" },
|
||||
{ id: "5", name: "فهد السالم", role: "محبي الأكل", company: "عميل", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-talking-her-long-distance-lover_23-2149289491.jpg" }
|
||||
]}
|
||||
title="آراء ضيوفنا"
|
||||
description="كلمات تصف تجربة طعامنا الفريدة."
|
||||
@@ -260,21 +118,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "هل يوجد خدمة حجز طاولات؟",
|
||||
content: "نعم، يمكنك حجز طاولتك مباشرة عبر التواصل معنا أو عبر الموقع.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "هل تقدمون خيارات نباتية؟",
|
||||
content: "نعم، لدينا تشكيلة متنوعة من المقبلات والأطباق التي تناسب الجميع.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "هل توفرون توصيل للمنازل؟",
|
||||
content: "نعم، نوفر خدمة التوصيل السريع لراحتكم.",
|
||||
},
|
||||
{ id: "1", title: "هل يوجد خدمة حجز طاولات؟", content: "نعم، يمكنك حجز طاولتك مباشرة عبر التواصل معنا أو عبر الموقع." },
|
||||
{ id: "2", title: "هل تقدمون خيارات نباتية؟", content: "نعم، لدينا تشكيلة متنوعة من المقبلات والأطباق التي تناسب الجميع." },
|
||||
{ id: "3", title: "هل توفرون توصيل للمنازل؟", content: "نعم، نوفر خدمة التوصيل السريع لراحتكم." }
|
||||
]}
|
||||
title="أسئلة شائعة"
|
||||
description="هل لديك استفسار؟ إليك الإجابات."
|
||||
@@ -285,16 +131,9 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="يسعدنا خدمتكم وتلقي استفساراتكم وحجوزاتكم. تفضلوا بزيارتنا أو اتصلوا بنا في أي وقت."
|
||||
buttons={[
|
||||
{
|
||||
text: "اتصل بنا",
|
||||
href: "tel:+966500000000",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "اتصل بنا", href: "tel:+966500000000" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -303,36 +142,8 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-close-up-view-pilaf-appetizing-pilaf-lemon-cutting-board-bowl-rice_140725-78641.jpg"
|
||||
logoText="مطعم مندي ومشويات الدوسري"
|
||||
columns={[
|
||||
{
|
||||
title: "روابط سريعة",
|
||||
items: [
|
||||
{
|
||||
label: "الرئيسية",
|
||||
href: "#home",
|
||||
},
|
||||
{
|
||||
label: "القائمة",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "اتصل بنا",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "اتصل بنا",
|
||||
items: [
|
||||
{
|
||||
label: "+966 50 000 0000",
|
||||
href: "tel:+966500000000",
|
||||
},
|
||||
{
|
||||
label: "الرياض، المملكة العربية السعودية",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "روابط سريعة", items: [{ label: "الرئيسية", href: "#home" }, { label: "القائمة", href: "#menu" }, { label: "اتصل بنا", href: "#contact" }] },
|
||||
{ title: "اتصل بنا", items: [{ label: "+966 50 000 0000", href: "tel:+966500000000" }, { label: "الرياض، المملكة العربية السعودية", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 مطعم الدوسري. جميع الحقوق محفوظة."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user