Files
3c0eda2f-a74e-441e-a9e0-aaa…/src/app/layout.tsx
2026-06-06 13:55:47 +00:00

73 lines
2.5 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 { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'Farouj Abou Issam | Authentic Lebanese Grilled Chicken in Beirut',
description: 'Experience the best Lebanese grilled chicken in Beirut at Farouj Abou Issam. Traditional family recipes, fresh ingredients, and a warm dining atmosphere. View our menu and call for orders!',
openGraph: {
"title": "Farouj Abou Issam | Authentic Lebanese Grilled Chicken in Beirut",
"description": "Experience the best Lebanese grilled chicken in Beirut at Farouj Abou Issam. Traditional family recipes, fresh ingredients, and a warm dining atmosphere. View our menu and call for orders!",
"url": "https://www.faroujabouissam.com",
"siteName": "Farouj Abou Issam",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/ketchup-mayonnaise-sauces-with-herbs-raw-chicken-legs_114579-19708.jpg",
"alt": "Lebanese grilled chicken"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "Farouj Abou Issam | Authentic Lebanese Grilled Chicken in Beirut",
"description": "Experience the best Lebanese grilled chicken in Beirut at Farouj Abou Issam. Traditional family recipes, fresh ingredients, and a warm dining atmosphere. View our menu and call for orders!",
"images": [
"http://img.b2bpic.net/free-photo/ketchup-mayonnaise-sauces-with-herbs-raw-chicken-legs_114579-19708.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}