Merge version_3 into main #5
@@ -1,47 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Cairo } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const cairo = Cairo({ subsets: ["arabic", "latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "مطعم النجمه والهلال - أفضل إفطار مصري مفتوح 24 ساعة",
|
||||
description: "مطعم النجمه والهلال - أفضل تجربة إفطار مصري أصيل بمكونات طازجة. مفتوح 24 ساعة. اتصل الآن: 01148126838",
|
||||
keywords: "إفطار مصري, مطعم مصري, فلافل, كشري, شكشوكة, مطعم 24 ساعة, الدسوقي",
|
||||
openGraph: {
|
||||
title: "مطعم النجمه والهلال - إفطار مصري مميز 24 ساعة",
|
||||
description: "تمتع بأفضل الأطباق المصرية الأصيلة في مطعم النجمه والهلال. مفتوح طوال اليوم والليل",
|
||||
type: "website",
|
||||
siteName: "مطعم النجمه والهلال",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "مطعم النجمه والهلال - إفطار مصري",
|
||||
description: "أفضل مطعم إفطار مصري مفتوح 24 ساعة",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
title: "مطعم النجمه والهلال", description: "أفضل مطعم للإفطار المصري الأصيل مفتوح 24 ساعة"
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="ar" dir="rtl" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="ar" dir="rtl">
|
||||
<body className={cairo.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1409,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,17 +57,23 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-set-tomato-with-egg-side-view_140725-9095.jpg?_wi=1", imageAlt: "أفضل إفطار مصري"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-set-tomato-with-egg-side-view_140725-9095.jpg?_wi=1", imageAlt: "أفضل إفطار مصري"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/falafel-hummus-pita-middle-eastern-arabic-dishes-halal-food-top-view-copy-space_2829-14258.jpg?_wi=1", imageAlt: "فلافل مصرية"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/falafel-hummus-pita-middle-eastern-arabic-dishes-halal-food-top-view-copy-space_2829-14258.jpg?_wi=1", imageAlt: "فلافل مصرية"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chickpea-hummus-wooden-bowl-garnished-with-parsley-paprika-olive-oil-wooden-table_123827-22490.jpg?_wi=1", imageAlt: "حمص وسلطات"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chickpea-hummus-wooden-bowl-garnished-with-parsley-paprika-olive-oil-wooden-table_123827-22490.jpg?_wi=1", imageAlt: "حمص وسلطات"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/making-roti-ingredients-assortment_23-2149033954.jpg?_wi=1", imageAlt: "خبز عيش بلدي"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/making-roti-ingredients-assortment_23-2149033954.jpg?_wi=1", imageAlt: "خبز عيش بلدي"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pilaf-with-peas-salad_140725-6297.jpg?_wi=1", imageAlt: "كشري مصري"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pilaf-with-peas-salad_140725-6297.jpg?_wi=1", imageAlt: "كشري مصري"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-traditional-shakshuka-frying-pan-wooden-background_169016-17048.jpg?_wi=1", imageAlt: "شكشوكة"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-traditional-shakshuka-frying-pan-wooden-background_169016-17048.jpg?_wi=1", imageAlt: "شكشوكة"
|
||||
},
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
className="w-full"
|
||||
@@ -83,15 +89,20 @@ export default function HomePage() {
|
||||
<ProductCardFour
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "فلافل مصرية", price: "25 جنيه", variant: "طازجة يومياً", imageSrc: "http://img.b2bpic.net/free-photo/falafel-hummus-pita-middle-eastern-arabic-dishes-halal-food-top-view-copy-space_2829-14258.jpg?_wi=2", imageAlt: "فلافل مصرية"},
|
||||
id: "1", name: "فلافل مصرية", price: "25 جنيه", variant: "طازجة يومياً", imageSrc: "http://img.b2bpic.net/free-photo/falafel-hummus-pita-middle-eastern-arabic-dishes-halal-food-top-view-copy-space_2829-14258.jpg?_wi=2", imageAlt: "فلافل مصرية"
|
||||
},
|
||||
{
|
||||
id: "2", name: "حمص بالطحينة", price: "30 جنيه", variant: "صنع يدوي", imageSrc: "http://img.b2bpic.net/free-photo/chickpea-hummus-wooden-bowl-garnished-with-parsley-paprika-olive-oil-wooden-table_123827-22490.jpg?_wi=2", imageAlt: "حمص بالطحينة"},
|
||||
id: "2", name: "حمص بالطحينة", price: "30 جنيه", variant: "صنع يدوي", imageSrc: "http://img.b2bpic.net/free-photo/chickpea-hummus-wooden-bowl-garnished-with-parsley-paprika-olive-oil-wooden-table_123827-22490.jpg?_wi=2", imageAlt: "حمص بالطحينة"
|
||||
},
|
||||
{
|
||||
id: "3", name: "خبز عيش بلدي", price: "2 جنيه", variant: "مخبوز طازج", imageSrc: "http://img.b2bpic.net/free-photo/making-roti-ingredients-assortment_23-2149033954.jpg?_wi=2", imageAlt: "خبز عيش بلدي"},
|
||||
id: "3", name: "خبز عيش بلدي", price: "2 جنيه", variant: "مخبوز طازج", imageSrc: "http://img.b2bpic.net/free-photo/making-roti-ingredients-assortment_23-2149033954.jpg?_wi=2", imageAlt: "خبز عيش بلدي"
|
||||
},
|
||||
{
|
||||
id: "4", name: "كشري مصري", price: "45 جنيه", variant: "وجبة متكاملة", imageSrc: "http://img.b2bpic.net/free-photo/pilaf-with-peas-salad_140725-6297.jpg?_wi=2", imageAlt: "كشري مصري"},
|
||||
id: "4", name: "كشري مصري", price: "45 جنيه", variant: "وجبة متكاملة", imageSrc: "http://img.b2bpic.net/free-photo/pilaf-with-peas-salad_140725-6297.jpg?_wi=2", imageAlt: "كشري مصري"
|
||||
},
|
||||
{
|
||||
id: "5", name: "شكشوكة", price: "40 جنيه", variant: "بالجبن والطماطم", imageSrc: "http://img.b2bpic.net/free-photo/closeup-traditional-shakshuka-frying-pan-wooden-background_169016-17048.jpg?_wi=2", imageAlt: "شكشوكة"},
|
||||
id: "5", name: "شكشوكة", price: "40 جنيه", variant: "بالجبن والطماطم", imageSrc: "http://img.b2bpic.net/free-photo/closeup-traditional-shakshuka-frying-pan-wooden-background_169016-17048.jpg?_wi=2", imageAlt: "شكشوكة"
|
||||
},
|
||||
]}
|
||||
title="أشهى الأطباق المميزة"
|
||||
description="اكتشف تشكيلتنا من أفضل الأطباق المصرية الأصيلة المحضرة بعناية فائقة"
|
||||
@@ -134,7 +145,7 @@ export default function HomePage() {
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/restaurant-hall-with-bright-color-sitting-furniturs-panoramic-windows_114579-1521.jpg?_wi=1"
|
||||
imageAlt="مطعم النجمه والهلال"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="left"
|
||||
containerClassName="w-full"
|
||||
textBoxClassName="space-y-6"
|
||||
@@ -149,22 +160,28 @@ export default function HomePage() {
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "أحمد علي", handle: "@ahmadali", testimonial: "أفضل مكان لتناول الإفطار. الطعام طازج والخدمة ممتازة جداً. بصراحة لا أتوقف عن التردد عليهم", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=1", imageAlt: "أحمد علي"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=1", imageAlt: "أحمد علي"
|
||||
},
|
||||
{
|
||||
id: "2", name: "فاطمة محمد", handle: "@fatimaM", testimonial: "المكان نظيف والموظفون لطيفون جداً. جودة الطعام ممتازة وأسعار معقولة", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1", imageAlt: "فاطمة محمد"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1", imageAlt: "فاطمة محمد"
|
||||
},
|
||||
{
|
||||
id: "3", name: "محمود سيد", handle: "@mahmoudS", testimonial: "أتمنى أن تحسنوا التقييم والاستجابة للآراء. المنتج جيد لكن بحاجة لتحسين التواصل مع العملاء", rating: 3,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=2", imageAlt: "محمود سيد"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=2", imageAlt: "محمود سيد"
|
||||
},
|
||||
{
|
||||
id: "4", name: "ليلى حسن", handle: "@lilahasan", testimonial: "الحمد لله تحسن الخدمة كثيراً. نتطلع لرؤية المزيد من الابتكارات في القائمة", rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg", imageAlt: "ليلى حسن"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg", imageAlt: "ليلى حسن"
|
||||
},
|
||||
{
|
||||
id: "5", name: "خالد إبراهيم", handle: "@khalidib", testimonial: "موقع رائع وطعام لذيذ. تجربة تناول الطعام هنا دائماً ممتعة وجميلة", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2", imageAlt: "خالد إبراهيم"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2", imageAlt: "خالد إبراهيم"
|
||||
},
|
||||
{
|
||||
id: "6", name: "نور أحمد", handle: "@noorahmad", testimonial: "مكان جميل والطعم يستحق. بأمل تطوروا أكثر في الخدمة العملاء والتسليم", rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=3", imageAlt: "نور أحمد"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=3", imageAlt: "نور أحمد"
|
||||
},
|
||||
]}
|
||||
showRating={true}
|
||||
title="آراء عملائنا الكرام"
|
||||
@@ -212,16 +229,17 @@ export default function HomePage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
tag: "الموقع", title: "عبده إبراهيم الدسوقي", subtitle: "متفرع من جمال عبدالناصر - مصر", description: "يقع مطعمنا في قلب المدينة بموقع متميز يسهل الوصول إليه. قريب من جميع وسائل النقل والخدمات", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-hall-with-bright-color-sitting-furniturs-panoramic-windows_114579-1521.jpg?_wi=2", imageAlt: "موقع المطعم", buttons: [
|
||||
{
|
||||
text: "حصول على الاتجاهات", href: "https://maps.google.com/?q=عبده+إبراهيم+الدسوقي,+مصر"},
|
||||
tag: "التواصل", title: "تواصل معنا", subtitle: "01148126838", description: "اتصل بنا مباشرة للحجز أو الاستفسار. فريقنا جاهز للرد على جميع استفساراتك في أي وقت", imageSrc: "http://img.b2bpic.net/free-photo/tables-chairs-arranged-empty-coffee-shop_107420-96463.jpg", imageAlt: "التواصل", buttons: [
|
||||
{ text: "اتصل الآن", href: "tel:01148126838" },
|
||||
{ text: "واتس أب", href: "https://wa.me/201148126838" },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
tag: "التواصل", title: "تواصل معنا", subtitle: "01148126838", description: "اتصل بنا مباشرة للحجز أو الاستفسار. فريقنا جاهز للرد على جميع استفساراتك في أي وقت", imageSrc: "http://img.b2bpic.net/free-photo/tables-chairs-arranged-empty-coffee-shop_107420-96463.jpg", imageAlt: "التواصل", buttons: [
|
||||
{ text: "اتصل الآن", href: "tel:01148126838" },
|
||||
{ text: "واتس أب", href: "https://wa.me/201148126838" },
|
||||
tag: "الموقع", title: "عبده إبراهيم الدسوقي", subtitle: "متفرع من جمال عبدالناصر - مصر", description: "يقع مطعمنا في قلب المدينة بموقع متميز يسهل الوصول إليه. قريب من جميع وسائل النقل والخدمات", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-hall-with-bright-color-sitting-furniturs-panoramic-windows_114579-1521.jpg?_wi=2", imageAlt: "موقع المطعم", buttons: [
|
||||
{
|
||||
text: "حصول على الاتجاهات", href: "https://maps.google.com/?q=عبده+إبراهيم+الدسوقي,+مصر"
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -248,4 +266,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user