diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fcf3876..d74887d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,32 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/common/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Al Rayah Bakeries - Fresh Bread & Pastries in Sharjah", description: "Fresh-baked bread, pastries, cakes, and sweets in Sharjah. Open 24 hours with quick pickup and delivery. AED 1-50. ⭐ 4.3 rating.", keywords: "bakery in Sharjah, fresh bread Sharjah, pastries Sharjah, cakes Sharjah, bakery near me, Arabic bread, affordable bakery", metadataBase: new URL("https://alrayahbakeries.ae"), - alternates: { - canonical: "https://alrayahbakeries.ae"}, - openGraph: { - title: "Al Rayah Bakeries - Fresh Bread & Pastries in Sharjah", description: "Fresh-baked bread, pastries, and cakes. Open 24 hours. Quick pickup and delivery available.", url: "https://alrayahbakeries.ae", siteName: "Al Rayah Bakeries", type: "website", images: [ - { - url: "https://alrayahbakeries.ae/og-image.jpg", alt: "Al Rayah Bakeries fresh bread and pastries"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Al Rayah Bakeries - Fresh Bread & Pastries in Sharjah", description: "Fresh-baked bread, pastries, cakes. Open 24 hours with quick pickup and delivery.", images: ["https://alrayahbakeries.ae/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Al Rayah Bakeries - Fresh Bread & Pastries in Sharjah", description: "Al Rayah Bakeries serves fresh-baked bread, pastries, and cakes to Sharjah. Open 24 hours with affordable prices and fast delivery."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +