3 Commits

Author SHA1 Message Date
f7e1dea616 Update src/app/page.tsx 2026-03-07 11:35:33 +00:00
bfc6d29484 Update src/app/layout.tsx 2026-03-07 11:35:31 +00:00
2f7365e5e8 Merge version_1 into main
Merge version_1 into main
2026-03-07 11:33:28 +00:00
2 changed files with 29 additions and 61 deletions

View File

@@ -1,61 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Dunham Plumbing Co. | Local Nashville Plumber | 24/7 Service", description: "Trusted local plumber in Nashville, IN. Fast, reliable plumbing services for homes. 4.7★ rated with 40+ reviews. Emergency repair available 24/7. Call (812) 988-0248.", keywords: "plumber Nashville IN, plumbing services Nashville Indiana, emergency plumber, water heater repair, drain cleaning, local plumber", metadataBase: new URL("https://dunhamplumbing.com"), title: "Dunham Plumbing Co. | Trusted Local Plumber in Nashville, IN", description: "Fast, reliable plumbing services in Nashville, IN. 4.7★ rated with 40+ reviews. 24/7 emergency service available."};
alternates: {
canonical: "https://dunhamplumbing.com"},
openGraph: {
title: "Dunham Plumbing Co. | Trusted Local Plumber", description: "Professional plumbing services in Nashville, IN. 4.7★ rated. Fast response times, fair pricing, licensed & insured.", url: "https://dunhamplumbing.com", siteName: "Dunham Plumbing Co.", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721548.jpg", alt: "Dunham Plumbing Co. Professional Service"},
],
},
twitter: {
card: "summary_large_image", title: "Dunham Plumbing Co. | Local Nashville Plumber", description: "Fast, reliable plumbing services. 4.7★ rated with 40+ reviews. Call (812) 988-0248.", images: ["http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721548.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={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1424,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -187,20 +187,23 @@ export default function LandingPage() {
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen <div className="py-12 md:py-16 lg:py-20 text-center">
testimonial="Very professional, punctual, and great value. They fixed our water heater issue quickly and explained everything clearly. Highly recommend Dunham Plumbing for anyone in Nashville." <h2 className="text-xl md:text-2xl lg:text-3xl font-semibold mb-8 md:mb-12">40+ Satisfied Customers in Nashville Trust Dunham Plumbing</h2>
rating={5} <TestimonialCardFifteen
author="Sarah Johnson, Nashville IN" testimonial="Very professional, punctual, and great value. They fixed our water heater issue quickly and explained everything clearly. Highly recommend Dunham Plumbing for anyone in Nashville."
avatars={[ rating={5}
{ src: "http://img.b2bpic.net/free-photo/young-crazy-man-happy-expression_1194-1931.jpg", alt: "Sarah Johnson" }, author="Sarah Johnson, Nashville IN"
{ src: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3633.jpg", alt: "Michael Chen" }, avatars={[
{ src: "http://img.b2bpic.net/free-photo/two-happy-male-female-business-people-showing-thumbs-up-outdoors_1262-12567.jpg", alt: "Emily Davis" }, { src: "http://img.b2bpic.net/free-photo/young-crazy-man-happy-expression_1194-1931.jpg", alt: "Sarah Johnson" },
{ src: "http://img.b2bpic.net/free-photo/medium-shot-woman-correcting-grammar-mistakes_23-2150171438.jpg", alt: "James Wilson" }, { src: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3633.jpg", alt: "Michael Chen" },
]} { src: "http://img.b2bpic.net/free-photo/two-happy-male-female-business-people-showing-thumbs-up-outdoors_1262-12567.jpg", alt: "Emily Davis" },
ratingAnimation="slide-up" { src: "http://img.b2bpic.net/free-photo/medium-shot-woman-correcting-grammar-mistakes_23-2150171438.jpg", alt: "James Wilson" },
avatarsAnimation="slide-up" ]}
useInvertedBackground={false} ratingAnimation="slide-up"
/> avatarsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">