@@ -1,57 +1,28 @@
import type { Metadata } from "next" ;
import { Nunito_Sans } from "next/font/google" ;
import { Halant } from "next/font/google" ;
import { Inter } from "next/font/google" ;
import { Geist , Geist_Mono } from "next/font/google" ;
import "./globals.css" ;
import { ServiceWrapper } from "@/components/ServiceWrapper" ;
import Tag from "@/tag/Tag" ;
const nunitoSans = Nunito_Sans ( {
variable : "--font-nunito -sans" , subsets : [ "latin" ] ,
const geist = Geist ( {
variable : "--font-geist -sans" , subsets : [ "latin" ] ,
} ) ;
const halant = Halant ( {
variable : "--font-halant " , subsets : [ "latin" ] ,
weight : [ "300" , "400" , "500" , "600" , "700" ] ,
} ) ;
const inter = Inter ( {
variable : "--font-inter" , subsets : [ "latin" ] ,
const geistMono = Geist_Mono ( {
variable : "--font-geist-mono " , subsets : [ "latin" ] ,
} ) ;
export const metadata : Metadata = {
title : "Damak Tadı | Authentic Turkish Grill in Antwerp" , description : "A uthentic Turkish comfort dining in Antwerp . Homemade dishes, warm hospitality, and genuine flavors. Reserve your table or order pickup today." , keywords : "Turkish restaurant Antwerp, grill restaurant, authentic Turkish cuisine, kebab, kofte, comfort dining" , metadataBase : new URL ( "https://damaktadi.be " ) ,
alternates : {
canonical : "https://damaktadi.be" } ,
openGraph : {
title : "Damak Tadı | Authentic Turkish Grill" , description : "Authentic Turkish comfort dining where every guest feels like family. Homemade flavors, warm hospitality." , url : "https://damaktadi.be" , siteName : "Damak Tadı " , type : "website" , images : [
{
url : "http://img.b2bpic.net/free-photo/different-varieties-kebab-with-grilled-vegetables_140725-8135.jpg" , alt : "Damak Tadı Turkish grill restaurant" } ,
] ,
} ,
twitter : {
card : "summary_large_image" , title : "Damak Tadı | Authentic Turkish Grill" , description : "Experience authentic Turkish comfort dining in Antwerp" , images : [ "http://img.b2bpic.net/free-photo/different-varieties-kebab-with-grilled-vegetables_140725-8135.jpg" ] ,
} ,
robots : {
index : true ,
follow : true ,
} ,
} ;
title : "Damak Tadı - Authentic Turkish Grill in Antwerp" , description : "Experience a uthentic Turkish flavors at Damak Tadı . Homemade dishes, warm hospitality, and refined comfort dining in Antwerp. " } ;
export default function RootLayout ( {
children ,
} : Readonly < {
} : {
children : React.ReactNode ;
} > ) {
} ) {
return (
< html lang = "en" suppressHydrationWarning >
< ServiceWrapper >
< body
className = { ` ${ nunitoSans . variable } ${ halant . variable } ${ inter . variable } antialiased ` }
>
< Tag / >
{ children }
< html lang = "en" >
< body className = { ` ${ geist . variable } ${ geistMono . variable } antialiased ` } >
{ children }
< script
dangerouslySetInnerHTML = { {
__html : `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
} }
/ >
< / body >
< / ServiceWrapper >
< / html >
) ;
}