Files
65bf1d1f-34ee-480a-a216-3d6…/src/app/layout.tsx
2026-06-07 21:34:05 +00:00

59 lines
2.2 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
export const metadata: Metadata = {
title: 'שווארמה באבאג\'ים אשדוד - הטעם האמיתי של המזרח התיכון',
description: 'שווארמה באבאג\'ים מגישה שווארמה אותנטית וטעימה באשדוד. בואו לטעום חוויות קולינריות בלתי נשכחות עם בשר טרי, ירקות פריכים ורטבים ייחודיים.',
openGraph: {
"title": "שווארמה באבאג'ים אשדוד", "description": "שווארמה אותנטית וטעימה באשדוד", "url": "/", "siteName": "שווארמה באבאג'ים", "images": [
{
"url": "http://img.b2bpic.net/free-photo/side-view-chicken-doner-wrapped-lavash-french-fries-wooden-cutting-board_140725-12780.jpg", "alt": "שווארמה עסיסית בפיתה"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image", "title": "שווארמה באבאג'ים אשדוד", "description": "שווארמה אותנטית וטעימה באשדוד", "images": [
"http://img.b2bpic.net/free-photo/side-view-chicken-doner-wrapped-lavash-french-fries-wooden-cutting-board_140725-12780.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="he" dir="rtl" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}