diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a814d5..657764c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,12 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./styles/variables.css"; import "./styles/base.css"; -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({ subsets: ["latin"] }); -export { metadata }; +export const metadata: Metadata = { + title: "Café OKTI'S - Moroccan Café in Tangier", description: "Experience authentic Moroccan café culture at Café OKTI'S in Tangier. Serving traditional breakfast, specialty drinks, and homemade pastries since 2010."}; export default function RootLayout({ children, @@ -19,21 +19,20 @@ export default function RootLayout({