diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 98ff22e..03679a4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Dream House Coffee Pool | Cozy Café in Fes, Morocco", description: "Experience exceptional coffee, warm atmosphere, and friendly service at Dream House Coffee Pool in Fes. Your perfect gathering place for family, friends, and great moments.", keywords: "café Fes, coffee shop Morocco, cozy café, Moroccan coffee, Dream House Coffee, breakfast Fes", metadataBase: new URL("https://dreamhousecoffeepool.ma"), - alternates: { - canonical: "https://dreamhousecoffeepool.ma"}, - openGraph: { - title: "Dream House Coffee Pool - Your Cozy Coffee Escape", description: "Experience exceptional coffee and warm atmosphere in beautiful Fes, Morocco.", url: "https://dreamhousecoffeepool.ma", siteName: "Dream House Coffee Pool", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg", alt: "Dream House Coffee Pool interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Dream House Coffee Pool | Fes", description: "Cozy café with great coffee, warm atmosphere, and friendly staff in Fes, Morocco.", images: ["http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Dream House Coffee Pool | Cozy Café in Fes, Morocco", description: "Experience exceptional coffee, warm atmosphere, and friendly service at Dream House Coffee Pool in Fes. Your perfect gathering place for great moments."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +