diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ed008ac..ee0cc49 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Istanbul Turkish Restaurant | Authentic Cuisine & Warm Hospitality", description: "Experience authentic Turkish cuisine with juicy kebabs, fresh pide, and genuine hospitality. Reserve your table at Istanbul Turkish Restaurant today.", keywords: "Turkish restaurant, authentic kebabs, Turkish cuisine, mezze, pide bread, Turkish food, restaurant reservation", metadataBase: new URL("https://istanbulrestaurant.com"), - alternates: { - canonical: "https://istanbulrestaurant.com"}, - openGraph: { - title: "Istanbul Turkish Restaurant | Authentic Turkish Cuisine", description: "Taste the heart of Istanbul. Authentic Turkish dishes, juicy kebabs, and warm hospitality.", type: "website", siteName: "Istanbul Turkish Restaurant", images: [ - { - url: "http://img.b2bpic.net/free-photo/chicken-beef-barbecue-lavash-with-onion-salad_114579-3084.jpg", alt: "Authentic Turkish kebabs"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Istanbul Turkish Restaurant | Authentic Turkish Cuisine", description: "Taste the heart of Istanbul with authentic Turkish kebabs, fresh pide, and warm hospitality.", images: ["http://img.b2bpic.net/free-photo/chicken-beef-barbecue-lavash-with-onion-salad_114579-3084.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Istanbul Turkish Restaurant", description: "Experience authentic Turkish cuisine with traditional recipes, freshly baked bread, and warm hospitality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -