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} +