10 Commits

Author SHA1 Message Date
d49d65d155 Update src/app/page.tsx 2026-03-03 19:46:21 +00:00
ac003204b8 Update src/app/layout.tsx 2026-03-03 19:46:20 +00:00
8cbd2f33ad Update src/app/globals.css 2026-03-03 19:46:19 +00:00
c508a50281 Update src/app/layout.tsx 2026-03-03 19:43:59 +00:00
431b1206fe Update src/app/layout.tsx 2026-03-03 19:35:09 +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
6775a12e7c 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
86279895b9 Update src/app/globals.css 2026-03-03 19:24:20 +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>
);
}
}