Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-03-03 17:41:36 +00:00
2 changed files with 16 additions and 52 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Archivo } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const archivo = Archivo({
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"],
});
const inter = Inter({ subsets: ["latin"] });
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"),
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
}
};
title: "Southeast Plumbing & Heating", description: "Fast, reliable, and reasonably priced plumbing and HVAC services in Talmage, NE"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCar
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FaqBase from "@/components/sections/faq/FaqBase";
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() {
return (
@@ -96,11 +96,15 @@ export default function SitePage() {
<div id="why-us" data-section="why-us">
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "Why Choose Southeast Plumbing & Heating" }]}
heading={[
{ type: "text", content: "Why Choose Southeast Plumbing & Heating" },
{ type: "text", content: "" }
]}
buttons={[{ text: "Get a Free Estimate", href: "#contact" }]}
buttonAnimation="slide-up"
useInvertedBackground={true}
ariaLabel="Why choose us section"
headingClassName="flex flex-col gap-6"
/>
</div>
@@ -111,10 +115,10 @@ export default function SitePage() {
textboxLayout="default"
animationType="slide-up"
metrics={[
{ id: "1", icon: Star, title: "Rating", value: "4.5★" },
{ id: "2", icon: Users, title: "Reviews", value: "15+" },
{ id: "3", icon: ThumbsUp, title: "Local", value: "Community Trusted" },
{ id: "4", icon: Zap, title: "Response", value: "Fast Service" }
{ id: "1", icon: Shield, title: "Licensed & Insured", value: "Professional" },
{ id: "2", icon: Clock, title: "24/7 Emergency Service", value: "Always Ready" },
{ id: "3", icon: CheckCircle, title: "Same-Day Availability", value: "Quick Response" },
{ id: "4", icon: Star, title: "Highly Rated", value: "4.5★ Reviews" }
]}
useInvertedBackground={false}
/>