From 2382b741242d60b1cb8af148ba7a76cde4c9c063 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 23:35:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fca5fae..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Price's Handyman & Construction | State College, PA", description: "Expert handyman and construction services in State College, PA. Drywall installation, remodeling, deck construction, and general contracting. Free estimates, 5-star rated.", keywords: "handyman, construction, drywall, remodeling, State College PA, contractor", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Price's Handyman & Construction", description: "Professional home improvement and construction services in State College, PA", siteName: "Price's Handyman & Construction", type: "website"}, - twitter: { - card: "summary_large_image", title: "Price's Handyman & Construction", description: "Expert handyman and construction services"}, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}