7 Commits

Author SHA1 Message Date
10392e823d Update src/app/page.tsx 2026-03-04 12:18:02 +00:00
9c20d18872 Update src/app/layout.tsx 2026-03-04 12:18:01 +00:00
ccb51074a0 Merge version_2 into main
Merge version_2 into main
2026-03-04 12:14:42 +00:00
910eccce03 Update src/app/page.tsx 2026-03-04 12:14:37 +00:00
3ba4e695cd Merge version_1 into main
Merge version_1 into main
2026-03-04 11:56:23 +00:00
dd94a8872f Merge version_1 into main
Merge version_1 into main
2026-03-04 11:55:23 +00:00
977b0bd60c Merge version_1 into main
Merge version_1 into main
2026-03-04 11:54:01 +00:00

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1378,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}