8 Commits

Author SHA1 Message Date
854c62d316 Update src/app/page.tsx 2026-03-03 18:05:01 +00:00
c8f59a5e5b Update src/app/layout.tsx 2026-03-03 18:04:59 +00:00
5401764c73 Merge version_2 into main
Merge version_2 into main
2026-03-03 17:41:36 +00:00
f9da84ef0a Update src/app/page.tsx 2026-03-03 17:41:30 +00:00
77ea2d4d43 Update src/app/layout.tsx 2026-03-03 17:41:29 +00:00
6a00c2f6b8 Merge version_1 into main
Merge version_1 into main
2026-03-03 17:38:59 +00:00
e184988428 Merge version_1 into main
Merge version_1 into main
2026-03-03 17:27:20 +00:00
daacc5665d Merge version_1 into main
Merge version_1 into main
2026-03-03 17:15:56 +00:00
2 changed files with 19 additions and 54 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Archivo } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const archivo = Archivo({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-archivo", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Plumbing & HVAC Repair in Talmage, NE | Southeast Plumbing", description: "Professional plumbing and HVAC services in Talmage, NE. Fast, reliable repairs. 4.5-star rated. Call (402) 264-3825 for emergency service or free estimate.", keywords: "plumbing repair, HVAC repair, water heater, drain cleaning, Talmage NE, plumber, air conditioning", metadataBase: new URL("https://southeastplumbing.com"), title: "Southeast Plumbing & Heating", description: "Fast, reliable, and reasonably priced plumbing and HVAC services in Talmage, NE"};
alternates: {
canonical: "https://southeastplumbing.com"
},
openGraph: {
title: "Plumbing & HVAC Services in Talmage, NE", description: "Fast, reliable plumbing and HVAC repair. 4.5-star rated local service. Call now for emergency repair or free estimate.", url: "https://southeastplumbing.com", siteName: "Southeast Plumbing & Heating", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg", alt: "Professional plumbing service"
}
]
},
twitter: {
card: "summary_large_image", title: "Plumbing & HVAC Services in Talmage, NE", description: "Fast, reliable repairs. 4.5-star rated. Call (402) 264-3825.", images: ["http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.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={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -10,7 +10,7 @@ import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCar
import ContactSplit from "@/components/sections/contact/ContactSplit"; import ContactSplit from "@/components/sections/contact/ContactSplit";
import FaqBase from "@/components/sections/faq/FaqBase"; import FaqBase from "@/components/sections/faq/FaqBase";
import FooterMedia from "@/components/sections/footer/FooterMedia"; import FooterMedia from "@/components/sections/footer/FooterMedia";
import { AlertCircle, MapPin, MessageSquare, Star, ThumbsUp, Users, Wrench, Zap } from "lucide-react"; import { AlertCircle, MapPin, MessageSquare, Star, ThumbsUp, Users, Wrench, Zap, CheckCircle, Clock, Shield } from "lucide-react";
export default function SitePage() { export default function SitePage() {
return ( return (
@@ -96,11 +96,16 @@ export default function SitePage() {
<div id="why-us" data-section="why-us"> <div id="why-us" data-section="why-us">
<InlineImageSplitTextAbout <InlineImageSplitTextAbout
heading={[{ type: "text", content: "Why Choose Southeast Plumbing & Heating" }]} heading={[
{ type: "text", content: "Why Choose" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/certificate-badge-icon-close-up_23-2149364020.jpg", alt: "Certified & Trusted" },
{ type: "text", content: "Southeast Plumbing & Heating" }
]}
buttons={[{ text: "Get a Free Estimate", href: "#contact" }]} buttons={[{ text: "Get a Free Estimate", href: "#contact" }]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
useInvertedBackground={true} useInvertedBackground={true}
ariaLabel="Why choose us section" ariaLabel="Why choose us section"
headingClassName="flex flex-col gap-6"
/> />
</div> </div>
@@ -111,10 +116,10 @@ export default function SitePage() {
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
metrics={[ metrics={[
{ id: "1", icon: Star, title: "Rating", value: "4.5★" }, { id: "1", icon: Shield, title: "Licensed & Insured", value: "Professional" },
{ id: "2", icon: Users, title: "Reviews", value: "15+" }, { id: "2", icon: Clock, title: "24/7 Emergency Service", value: "Always Ready" },
{ id: "3", icon: ThumbsUp, title: "Local", value: "Community Trusted" }, { id: "3", icon: CheckCircle, title: "Same-Day Availability", value: "Quick Response" },
{ id: "4", icon: Zap, title: "Response", value: "Fast Service" } { id: "4", icon: Star, title: "Highly Rated", value: "4.5★ Reviews" }
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
/> />
@@ -269,4 +274,4 @@ export default function SitePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }