From 1afd5ec0d2ccf7c0aac92da91a322c152ef3b009 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 02:06:48 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 1425 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 1401 insertions(+), 24 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a336aee..fcf3876 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,1421 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./styles/variables.css"; -import "./styles/base.css"; +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"], +}); 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: "Al Rayah Bakeries serves fresh-baked bread, pastries, and cakes in Sharjah. Open 24 hours with affordable prices and fast delivery."}; + 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, + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + {children} +