Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-08 04:26:18 +00:00
2 changed files with 15 additions and 45 deletions

View File

@@ -1,57 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "SINGH MART | Best Hardware Store in Ludhiana", description: "Quality hardware materials, building supplies & tools in Ludhiana. Trusted local store with competitive prices. Visit SINGH MART near Verka Chowk today.", keywords: "hardware store Ludhiana, building materials Ludhiana, construction tools, hardware supplies, best hardware store near Verka Chowk", metadataBase: new URL("https://singh-mart.local"),
alternates: {
canonical: "https://singh-mart.local"},
openGraph: {
title: "SINGH MART | Your Trusted Hardware Store", description: "Ludhiana's premium hardware store offering quality building materials, tools & construction supplies at competitive prices.", url: "https://singh-mart.local", siteName: "SINGH MART", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-pattern-from-set-construction-tools-as-screwdriver-pipe-wrench-safety-helmet-paint-brush-open-end-wrench-wooden-background_141793-15175.jpg", alt: "SINGH MART Hardware Store"},
],
},
twitter: {
card: "summary_large_image", title: "SINGH MART - Best Hardware Store Ludhiana", description: "Quality hardware materials & construction tools. Visit us near Verka Chowk. Competitive prices, expert service.", images: ["http://img.b2bpic.net/free-photo/top-view-pattern-from-set-construction-tools-as-screwdriver-pipe-wrench-safety-helmet-paint-brush-open-end-wrench-wooden-background_141793-15175.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "SINGH MART - Premium Hardware Store in Ludhiana", description: "Your trusted hardware store in Ludhiana offering premium building materials, quality tools, and construction supplies at the best prices."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -87,7 +87,7 @@ export default function LandingPage() {
"Cement and concrete mixtures", "Bricks and blocks", "Sand and aggregates", "Steel reinforcement bars", "Wood and lumber"
],
buttons: [
{ text: "Learn More", href: "tel:+919216534339" }
{ text: "Check Availability", href: "tel:+919216534339" }
]
},
{
@@ -95,7 +95,7 @@ export default function LandingPage() {
"Electric drills and drivers", "Angle grinders and cutters", "Circular and reciprocating saws", "Impact wrenches", "Professional grade power tools"
],
buttons: [
{ text: "View Range", href: "tel:+919216534339" }
{ text: "Call for Pricing", href: "tel:+919216534339" }
]
},
{
@@ -103,7 +103,7 @@ export default function LandingPage() {
"Hammers and mallets", "Screwdrivers and bits", "Wrenches and spanners", "Pliers and cutting tools", "Precision measurement tools"
],
buttons: [
{ text: "Explore", href: "tel:+919216534339" }
{ text: "Get Quote", href: "tel:+919216534339" }
]
}
]}