29 Commits

Author SHA1 Message Date
0fda1e95b4 Update src/app/page.tsx 2026-03-03 19:47:55 +00:00
e1bcd1a38e Update src/app/layout.tsx 2026-03-03 19:47:55 +00:00
752376f4d4 Update src/app/globals.css 2026-03-03 19:47:54 +00:00
7bb7e9fc49 Merge version_3 into main
Merge version_3 into main
2026-03-03 19:44:39 +00:00
6552a6ab02 Update src/app/page.tsx 2026-03-03 19:40:49 +00:00
18f5ea3043 Update src/app/layout.tsx 2026-03-03 19:40:48 +00:00
433b3e186f Update src/app/page.tsx 2026-03-03 19:36:43 +00:00
49bbaad1e8 Update src/app/layout.tsx 2026-03-03 19:36:42 +00:00
4943c8de05 Switch to version 1: modified src/app/page.tsx 2026-03-03 19:34:24 +00:00
fc49b04b48 Switch to version 1: modified src/app/layout.tsx 2026-03-03 19:34:23 +00:00
09755bdadf Switch to version 1: modified src/app/globals.css 2026-03-03 19:34:23 +00:00
56fc8ec60a Merge version_2 into main
Merge version_2 into main
2026-03-03 19:30:31 +00:00
a2d0ea26eb Update src/app/page.tsx 2026-03-03 19:29:48 +00:00
3cb2cf3d0c Update src/app/layout.tsx 2026-03-03 19:29:48 +00:00
f95af6c10f Update src/app/page.tsx 2026-03-03 19:28:57 +00:00
11ad855d22 Update src/app/layout.tsx 2026-03-03 19:28:57 +00:00
65c505a775 Update src/app/page.tsx 2026-03-03 19:28:14 +00:00
1653c7c08d Update src/app/layout.tsx 2026-03-03 19:28:14 +00:00
a664fcdbc6 Update src/app/page.tsx 2026-03-03 19:24:26 +00:00
272284de5e Update src/app/layout.tsx 2026-03-03 19:24:25 +00:00
d8ab884fdf Merge version_2 into main
Merge version_2 into main
2026-03-03 19:24:25 +00:00
6775a12e7c Update src/app/page.tsx 2026-03-03 19:24:21 +00:00
6ad170a5e9 Update src/app/page.tsx 2026-03-03 19:24:21 +00:00
a4b2893ddd Update src/app/layout.tsx 2026-03-03 19:24:21 +00:00
1ab2e12f7e Update src/app/layout.tsx 2026-03-03 19:24:21 +00:00
86279895b9 Update src/app/globals.css 2026-03-03 19:24:20 +00:00
078769371e Merge version_1 into main
Merge version_1 into main
2026-03-03 19:18:05 +00:00
a8b2ad956d Merge version_1 into main
Merge version_1 into main
2026-03-03 19:16:44 +00:00
0e3613351a Merge version_1 into main
Merge version_1 into main
2026-03-03 19:14:02 +00:00
3 changed files with 47 additions and 42 deletions

View File

@@ -1,5 +1,34 @@
@import "tailwindcss";
@import "./styles/variables.css";
@import "./styles/theme.css";
@import "./styles/utilities.css";
@import "./styles/base.css";
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
background-color: var(--background);
color: var(--foreground);
transition: background-color 0.3s ease, color 0.3s ease;
}
@layer base {
body {
font-family: var(--font-inter), sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-inter), sans-serif;
}
}

View File

@@ -1,47 +1,23 @@
import type { Metadata } from "next";
import { Open_Sans } from "next/font/google";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["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={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -190,7 +190,8 @@ export default function HomePage() {
tagIcon={CheckCircle}
textboxLayout="default"
useInvertedBackground={false}
names={["Google Maps", "فودافيون", "كارم", "بوابة الطعام", "فيسبوك", "تويتر", "واتس أب"]}
names={[
"Google Maps", "فودافيون", "كارم", "بوابة الطعام", "فيسبوك", "تويتر", "واتس أب"]}
speed={40}
showCard={true}
containerClassName="w-full"
@@ -248,4 +249,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}