diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3e6a7b0..82fe4ab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,40 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Tag } from "@/components/utility/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +const metadata: Metadata = { + title: "Teyeb Délice - Bakery & Café in Tangier", description: "Experience authentic Moroccan bakery and café culture at Teyeb Délice. Fresh pastries, traditional breakfast, and specialty beverages in the heart of Tangier."}; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Café OKTI'S - Authentic Moroccan Café in Tangier | 4.5★", description: "Welcome to Café OKTI'S in Tangier. Experience authentic Moroccan breakfast, Crêpes Nutella, and specialty drinks. Highly rated 4.5★ with 71+ reviews.", keywords: "Moroccan café, Tangier café, breakfast, crêpes, authentic café, coffee shop", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Café OKTI'S - Authentic Moroccan Café", description: "Experience the warmth of Moroccan café culture. Specialty items, fresh ingredients, and exceptional hospitality.", siteName: "Café OKTI'S", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/vintage-light-lamp_1203-3090.jpg", alt: "Café OKTI'S interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Café OKTI'S - Authentic Moroccan Café in Tangier", description: "4.5★ rated café serving traditional breakfast and specialty drinks. Located in Tangier, Morocco.", images: ["http://img.b2bpic.net/free-photo/vintage-light-lamp_1203-3090.jpg"], - }, -}; +export { metadata }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - +