diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b4aeaed..3d2ea8b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,46 +1,20 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville", subsets: ["latin"],
- weight: ["400", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Local Service | Expert & Trusted Professional Services", description: "Professional local services you can trust. Expert technicians, 24/7 emergency service, free quotes. Serving your community with quality and reliability.", keywords: "local services, professional service, emergency service, experienced technicians, local business", openGraph: {
- title: "Local Service | Expert & Trusted Professional Services", description: "Professional local services you can trust. Expert technicians, 24/7 emergency service, free quotes.", type: "website", siteName: "ProService"
- },
- twitter: {
- card: "summary_large_image", title: "Local Service | Expert & Trusted Professional Services", description: "Professional local services you can trust. Expert technicians, 24/7 emergency service."
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "ProService - Expert Local Service You Can Trust", description: "Professional, reliable service for your home and business. Fast response, quality workmanship, guaranteed satisfaction."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-