diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 739c706..a097a00 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,46 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Lora, Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const lora = Lora({ + variable: "--font-lora", subsets: ["latin"], + weight: ["400", "500", "600", "700"], }); -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({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["400", "500", "600", "700"], }); export const metadata: Metadata = { - title: "Aishazza Restaurant | Authentic Central Asian Cuisine in JLT Dubai", description: "Discover Aishazza Restaurant in Jumeirah Lake Towers - authentic Central Asian cuisine with lakeside dining, handmade dishes, and exceptional hospitality. Reserve your table today.", keywords: "Central Asian restaurant Dubai, authentic cuisine JLT, lagman manty kebabs, lakeside dining Dubai, fine dining restaurant, CIS cuisine, Eastern European food Dubai", metadataBase: new URL("https://aishazza.ae"), - alternates: { - canonical: "https://aishazza.ae"}, - openGraph: { - title: "Aishazza Restaurant | Premium Central Asian Dining in Dubai", description: "Experience authentic Central Asian cuisine with warm hospitality at Aishazza in JLT. Handmade dishes, lakeside views, and exceptional service.", url: "https://aishazza.ae", siteName: "Aishazza Restaurant DMCC", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/fried-fish-fillet-placed-avocado-slices-sauce-topped-with-tomato-olive-fish-skin_141793-2236.jpg", alt: "Aishazza Restaurant - Premium Dining Experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Aishazza Restaurant | Authentic Central Asian Cuisine", description: "Join us for handmade lagman, manty, kebabs, and warm hospitality by the JLT lakes.", images: ["http://img.b2bpic.net/free-photo/fried-fish-fillet-placed-avocado-slices-sauce-topped-with-tomato-olive-fish-skin_141793-2236.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: "Aishazza Restaurant - Authentic Central Asian Cuisine in Dubai", description: "Experience authentic Central Asian cuisine at Aishazza Restaurant in Jumeirah Lake Towers, Dubai. Premium casual dining with lakeside seating, handcrafted manty, lagman, kebabs, and warm hospitality.", keywords: "restaurant Dubai, Central Asian cuisine, JLT dining, authentic food, lagman, manty, kebabs, lakeside restaurant", openGraph: { + title: "Aishazza Restaurant - Authentic Central Asian Cuisine", description: "Discover authentic flavors and elegant ambiance at Aishazza in Dubai", type: "website", locale: "en_AE"}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +