diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 6746c26..ef8f706 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-