8 Commits

Author SHA1 Message Date
442ebd9bcd Switch to version 2: modified src/app/page.tsx 2026-03-06 06:34:46 +00:00
a1311040cf Merge version_3 into main
Merge version_3 into main
2026-03-06 06:26:06 +00:00
a2539fde7d Update src/app/page.tsx 2026-03-06 06:26:02 +00:00
bba610f7b8 Merge version_2 into main
Merge version_2 into main
2026-03-06 06:24:27 +00:00
729f810cd7 Update src/app/page.tsx 2026-03-06 06:24:23 +00:00
2a856ed1ca Update src/app/layout.tsx 2026-03-06 06:24:22 +00:00
118b46beda Merge version_1 into main
Merge version_1 into main
2026-03-06 06:20:13 +00:00
672327b495 Merge version_1 into main
Merge version_1 into main
2026-03-06 06:19:14 +00:00
2 changed files with 11 additions and 67 deletions

View File

@@ -1,75 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Reliable Plumbing in Hunt County, TX | Dynamite Plumbing", title: "Dynamite Plumbing - Hunt County, TX", description: "Reliable plumbing services in Hunt County, TX. Licensed, insured, and available 24/7 for emergencies."};
description: "Honest pricing, quality workmanship, fast service. Locally owned plumber in Hunt County. 5.0 rating. Call 469-410-2657 for free estimate.",
keywords: "plumber Hunt County, plumbing repairs Texas, emergency plumbing, gas line installation, honest pricing",
metadataBase: new URL("https://dynamiteplumbingtx.com"),
alternates: {
canonical: "https://dynamiteplumbingtx.com",
},
openGraph: {
title: "Reliable Plumbing in Hunt County, TX | Dynamite Plumbing",
description: "Honest pricing, quality workmanship, fast service. Locally owned plumber in Hunt County. Call for free estimate.",
url: "https://dynamiteplumbingtx.com",
siteName: "Dynamite Plumbing of Texas",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg",
alt: "Dynamite Plumbing - Professional Plumbing Service in Hunt County",
},
],
},
twitter: {
card: "summary_large_image",
title: "Reliable Plumbing in Hunt County, TX | Dynamite Plumbing",
description: "Honest pricing, quality workmanship, fast service. Locally owned plumber. Call 469-410-2657.",
images: ["http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1437,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -155,12 +155,12 @@ export default function HomePage() {
tagIcon={Phone} tagIcon={Phone}
tagAnimation="slide-up" tagAnimation="slide-up"
title="Call for Your Free Estimate" title="Call for Your Free Estimate"
description="No hidden fees. No surprises. Just honest, reliable plumbing service. Contact us today for a free consultation." description="Need plumbing help? Call Dynamite Plumbing now at 469-410-2657. Available 24/7 for emergencies. No hidden fees, no surprises."
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
buttonText="Call: 469-410-2657" buttonText="Call: 469-410-2657"
inputPlaceholder="Your phone number" inputPlaceholder="469-410-2657"
termsText="We respect your privacy and will never share your information." termsText="For urgent issues, call us immediately. We're standing by to help."
/> />
</div> </div>
@@ -173,4 +173,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }