Merge version_3 into main #5
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -84,19 +84,19 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Fresh Fruits & Vegetables", description: "Daily fresh produce sourced locally and internationally - $2.99-$5.99 USD", imageSrc: "http://img.b2bpic.net/free-photo/fruits-vegetables-counter_1398-2252.jpg?_wi=1", imageAlt: "Fresh produce section"
|
||||
title: "Fresh Fruits & Vegetables", description: "Daily fresh produce sourced locally and internationally", imageSrc: "http://img.b2bpic.net/free-photo/fruits-vegetables-counter_1398-2252.jpg?_wi=1", imageAlt: "Fresh produce section"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Butcher & Fresh Meat", description: "Premium quality cuts prepared fresh daily - $8.99-$15.99 USD", imageSrc: "http://img.b2bpic.net/free-photo/butcher-boning-ham-modern-butcher-shop_1139-1724.jpg", imageAlt: "Fresh meat counter"
|
||||
title: "Butcher & Fresh Meat", description: "Premium quality cuts prepared fresh daily", imageSrc: "http://img.b2bpic.net/free-photo/butcher-boning-ham-modern-butcher-shop_1139-1724.jpg", imageAlt: "Fresh meat counter"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Dairy & Refrigerated", description: "Wide selection of milk, cheese, and refrigerated items - $3.49-$12.99 USD", imageSrc: "http://img.b2bpic.net/free-photo/dairy-products_114579-8763.jpg?_wi=1", imageAlt: "Dairy refrigerated section"
|
||||
title: "Dairy & Refrigerated", description: "Wide selection of milk, cheese, and refrigerated items", imageSrc: "http://img.b2bpic.net/free-photo/dairy-products_114579-8763.jpg?_wi=1", imageAlt: "Dairy refrigerated section"
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Pantry & Essentials", description: "All your pantry staples and household essentials - $1.99-$9.99 USD", imageSrc: "http://img.b2bpic.net/free-photo/delicious-preserved-food-arrangement_23-2149238970.jpg?_wi=1", imageAlt: "Pantry shelves"
|
||||
title: "Pantry & Essentials", description: "All your pantry staples and household essentials", imageSrc: "http://img.b2bpic.net/free-photo/delicious-preserved-food-arrangement_23-2149238970.jpg?_wi=1", imageAlt: "Pantry shelves"
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user