diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3056f49..88ff094 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,60 +1,23 @@
import type { Metadata } from "next";
-import { Roboto } from "next/font/google";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Poppins } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const roboto = Roboto({
- variable: "--font-roboto", subsets: ["latin"],
- weight: ["100", "300", "400", "500", "700", "900"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const poppins = Poppins({
+ subsets: ["latin"],
+ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
- title: "Baba Turc Marrakech | Authentic Turkish Restaurant & Steakhouse", description: "Authentic Turkish cuisine in Marrakech. Premium steaks, kebabs & traditional dishes. Open until 00:30. 4.4★ rated. Reserve a table or order delivery now.", keywords: "Turkish restaurant Marrakech, steakhouse Marrakech, kebab Marrakech, Turkish food, authentic cuisine, late-night dining, Marrakech dining", metadataBase: new URL("https://babaturc-marrakech.com"),
- alternates: {
- canonical: "https://babaturc-marrakech.com"
- },
- openGraph: {
- title: "Baba Turc Marrakech | Premium Turkish Cuisine", description: "Experience authentic Turkish flavors in the heart of Marrakech. Premium steaks, traditional kebabs, and unforgettable dining.", url: "https://babaturc-marrakech.com", siteName: "Baba Turc Marrakech", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/mushroom-salad-with-potato-carrot-mayonnaise_140725-6748.jpg", alt: "Authentic Turkish steakhouse in Marrakech"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Baba Turc Marrakech | Turkish Restaurant", description: "Premium Turkish cuisine, steaks & kebabs. Open until 00:30. 4.4★ rated. Reserve or order delivery.", images: ["http://img.b2bpic.net/free-photo/mushroom-salad-with-potato-carrot-mayonnaise_140725-6748.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Baba Turc Marrakech - Authentic Turkish Restaurant", description: "Experience authentic Turkish cuisine at Baba Turc Marrakech. Premium steaks, traditional kebabs, and unforgettable dining. Open daily until 00:30. Reserve your table or order delivery now."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-