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} +