From 467e18263ba53aa99aa2a837c79d1a2dc01a39de Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:38:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 37 +++++++------------------------------ 1 file changed, 7 insertions(+), 30 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8794f8e..9ea72a0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,41 +1,19 @@ import type { Metadata } from "next"; -import { Roboto } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); export const metadata: Metadata = { - title: "Skytech Drilling | Professional Drilling & Boring Services", description: "Expert drilling, boring, and inspection services for residential and commercial projects. 20+ years experience, licensed and insured. Get a free quote today.", keywords: "drilling services, boring contractors, inspection services, foundation drilling, utility drilling, professional drilling", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Skytech Drilling | Professional Drilling & Boring Services", description: "Expert drilling, boring, and inspection services. 20+ years experience serving construction and industrial clients.", type: "website", siteName: "Skytech Drilling" - }, - twitter: { - card: "summary_large_image", title: "Skytech Drilling | Professional Drilling & Boring Services", description: "Expert drilling, boring, and inspection services with 20+ years industry experience." - }, -}; + title: "Skytech Drilling | Professional Drilling Solutions", description: "Professional drilling, boring, and inspection services for construction and industrial projects."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + + {children} +