From c75820b5ec91cf671c6c8a21c8829e040ee9d245 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 01:54:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 805930c..e2d6f81 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,13 +2,15 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./styles/variables.css"; import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; const inter = Inter({ variable: "--font-inter", 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 to Sharjah. Open 24 hours with affordable prices and fast delivery."}; + 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."}; export default function RootLayout({ children, @@ -18,11 +20,32 @@ export default function RootLayout({ return ( - {children} + + + {children} +