From f7b11e9c9232c8c93c9f3f325ad0396400004851 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 04:49:56 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1411 +------------------------------------------- 1 file changed, 7 insertions(+), 1404 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8c5c2e6..4303dc7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +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 { Outfit } 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 outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Matt's House Painting | Professional Interior & Exterior Painting", description: "Professional house painting services for residential and commercial properties. 15+ years of experience, free quotes, fully licensed and insured.", keywords: "house painting, interior painting, exterior painting, painting contractor, professional painter", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Matt's House Painting | Professional Painting Services", description: "Transform your home with expert painting services. Quality workmanship and customer satisfaction guaranteed.", type: "website", siteName: "Matt's House Painting"}, - twitter: { - card: "summary_large_image", title: "Matt's House Painting | Professional Painting Services", description: "Professional house painting services with 15+ years of experience. Get a free quote today!"}, -}; + title: "Matt's House Painting | Professional Painting Services", description: "Transform your home with expert painting services. Quality workmanship, attention to detail, and customer satisfaction guaranteed."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -