diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3559bcc..6839eee 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,16 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Trust Supermarket Ballouneh | Fresh Groceries & Fair Prices", description: "Your trusted neighborhood supermarket in Ballouneh. Fresh produce, quality meat, dairy, and household essentials. Open daily. Call 09 236 435 or visit us today.", keywords: "supermarket Ballouneh, grocery store Ballouneh, fresh produce Ballouneh, supermarket near me, local supermarket", metadataBase: new URL("https://trustsupermarket.com"), - alternates: { - canonical: "https://trustsupermarket.com" - }, - openGraph: { - title: "Trust Supermarket – Ballouneh's Trusted Grocery Store", description: "Fresh products. Great prices. Friendly service. Visit Trust Supermarket today.", url: "https://trustsupermarket.com", siteName: "Trust Supermarket", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/shopping-woman-looking-shelves-supermarket-with-shopping-cart-portrait-young-girl-market-store-fruits-vegetables-section_627829-6362.jpg", alt: "Trust Supermarket storefront" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Trust Supermarket – Your Neighborhood Grocery Store", description: "Fresh, quality groceries at competitive prices in Ballouneh.", images: ["http://img.b2bpic.net/free-photo/shopping-woman-looking-shelves-supermarket-with-shopping-cart-portrait-young-girl-market-store-fruits-vegetables-section_627829-6362.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Trust Supermarket", description: "Your trusted neighborhood supermarket in Ballouneh"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}