From f38e94ba23710387709b7042d6f98ad9edd18e1a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 04:01:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1422 +------------------------------------------- 1 file changed, 16 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 21ed8de..48840e2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,31 @@ -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 type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: '--font-geist-sans', + subsets: ['latin'], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Jack's Pressure Washing | Local Driveway & Patio Cleaning", description: "Professional pressure washing service for driveways, patios, trash cans, and more. Call 559-400-9003 for a free quote. Happy to serve my neighbors!", keywords: "pressure washing near me, driveway cleaning, patio pressure washing, trash can cleaning service, local pressure washing, car wash service", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Jack's Pressure Washing | Local Driveway & Patio Cleaning", description: "Professional pressure washing service for driveways, patios, trash cans, and more. Call 559-400-9003 for a free quote.", url: "https://jackspressurewashing.local", siteName: "Jack's Pressure Washing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/factory-worker-standing-metal-platform-industrial-storage-tanks-looking-up-visual-inspection-silos-food-production_342744-450.jpg", alt: "Jack's Pressure Washing - Professional cleaning service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Jack's Pressure Washing | Local Driveway & Patio Cleaning", description: "Call 559-400-9003 for professional pressure washing. Happy to serve my neighbors!", images: ["http://img.b2bpic.net/free-photo/factory-worker-standing-metal-platform-industrial-storage-tanks-looking-up-visual-inspection-silos-food-production_342744-450.jpg"], - }, + title: 'Create Next App', + description: 'Generated by create next app', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -