diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 9c40f2f..f0f27da 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { DM_Sans } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Joel Handyman Services | Brooklyn NY | Same-Day Repairs", description: "Professional handyman services in Brooklyn. Plumbing, electrical, carpentry, drywall repair. Licensed, insured, 5.0-star rated. Same-day service available.", keywords: "handyman Brooklyn, plumbing repair, electrical services, carpentry, drywall repair, home repair Brooklyn NY", metadataBase: new URL("https://joelhandymanservices.com"),
- alternates: {
- canonical: "https://joelhandymanservices.com"},
- openGraph: {
- title: "Joel Handyman Services | Trusted Brooklyn Home Repair", description: "Professional handyman for plumbing, electrical, carpentry, and wall repair. Licensed. Insured. 5-star Google rated.", url: "https://joelhandymanservices.com", siteName: "Joel Handyman Services", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746296.jpg", alt: "professional handyman with tools organized Brooklyn"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Joel Handyman Services | Brooklyn Home Repair", description: "Professional plumbing, electrical, carpentry, and drywall repair. Same-day service. 5.0-star Google rated.", images: ["http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746296.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Joel Handyman Services", description: "Professional home repairs in Brooklyn. Licensed, insured, transparent pricing. Plumbing, electrical, carpentry, drywall repairs."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-