Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 854c62d316 | |||
| c8f59a5e5b | |||
| 5401764c73 | |||
| f9da84ef0a | |||
| 77ea2d4d43 | |||
| 6a00c2f6b8 | |||
| e184988428 | |||
| daacc5665d |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user