diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 948aa77..1050a01 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,73 +1,23 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito_Sans } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans",
- subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Pro Renton Plumbers | Fast, Reliable Plumbing Services",
- description: "Licensed, insured plumbers in Renton, WA. Same-day service, 24/7 emergency response, upfront pricing. Water heater repair, drain cleaning, leak detection & more.",
- keywords: "Renton plumber, emergency plumbing, water heater repair, drain cleaning, local plumber, 24/7 plumbing service",
- metadataBase: new URL("https://prorentonplumbers.com"),
- alternates: {
- canonical: "https://prorentonplumbers.com",
- },
- openGraph: {
- title: "Pro Renton Plumbers | Trusted Local Service",
- description: "Fast, reliable plumbing repairs and installations. Licensed professionals, same-day service, free estimates.",
- type: "website",
- siteName: "Pro Renton Plumbers",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg",
- alt: "Professional plumbing service in Renton",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Pro Renton Plumbers | Expert Local Service",
- description: "Fast, reliable plumbing services in Renton, WA. Call now for emergency service or free estimate.",
- images: ["http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Pro Renton Plumbers | 24/7 Emergency Plumbing Services", description:
+ "Trusted local plumbers in Renton providing fast, reliable repairs and installations. Licensed, insured, 24/7 emergency service available."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-