diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3521588..8671e75 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 5d01969..19b3c2e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {
);
-}
\ No newline at end of file
+}