Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-08 01:41:54 +00:00
2 changed files with 9 additions and 41 deletions

View File

@@ -1,52 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Big Red's Supply Inc | Plumbing Parts Norman OK", description: "Trusted plumbing supply store in Norman, OK. Expert advice, quality parts for pros and homeowners. Call (405) 329-8680.", keywords: "plumbing supply Norman OK, plumbing parts near me, plumbing supplies Oklahoma, water heater parts, faucet repair", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Big Red's Supply Inc | Plumbing Experts Norman OK", description: "Your trusted local plumbing supply store in Norman, Oklahoma. Expert help and quality parts for every plumbing project.", url: undefined,
siteName: "Big Red's Supply Inc", type: "website", images: [],
},
twitter: {
card: "summary", title: "Big Red's Supply Inc | Plumbing Parts & Expert Help", description: "Quality plumbing supplies and expert advice in Norman, OK. Call (405) 329-8680.", images: [],
},
};
title: "Big Red's Supply Inc | Plumbing Parts & Expert Help in Norman, OK", description: "Quality plumbing supplies, expert advice, and trusted service for Norman homeowners and professional plumbers. Visit Big Red's Supply Inc today."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import TextAbout from '@/components/sections/about/TextAbout';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Phone, MapPin, Clock } from 'lucide-react';
import { Phone, MapPin, Clock, Shield } from 'lucide-react';
const assetMap = {
"hero-plumbing-supplies": "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-132393.jpg", "plumbing-tools-work": "http://img.b2bpic.net/free-photo/man-servant-cleaning-kitchen_23-2149530813.jpg", "store-interior-professional": "http://img.b2bpic.net/free-photo/middle-eastern-worker-checks-stock-tablet-clothing-store_482257-118282.jpg", "faucet-parts-detail": "http://img.b2bpic.net/free-photo/nobody-interior-bathtub-new-contemporary_1203-5189.jpg", "water-heater-components": "http://img.b2bpic.net/free-photo/graphite-sectional-radiator-vertical-symmetry-heating-design_169016-69034.jpg"
@@ -54,6 +54,7 @@ export default function LandingPage() {
description="Serving Norman plumbers and homeowners with expert help and quality plumbing supplies. Get the advice you need and the parts that work."
background={{ variant: "sparkles-gradient" }}
tag="Norman, OK"
tagIcon={Shield}
buttons={[
{ text: "Call Now", href: "tel:(405)329-8680" },
{ text: "Get Help Finding Parts", href: "#contact" }