Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d49d65d155 | |||
| ac003204b8 | |||
| 8cbd2f33ad | |||
| c508a50281 | |||
| 431b1206fe | |||
| f95af6c10f | |||
| 11ad855d22 | |||
| 6775a12e7c | |||
| a4b2893ddd | |||
| 86279895b9 | |||
| 078769371e | |||
| a8b2ad956d | |||
| 0e3613351a |
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user