diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a6a7dc9..de9e903 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,20 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Trusted Heating & Plumbing Services Cork | 4.8★ Rated", - description: "Professional boiler replacement, heating systems & emergency plumbing services in Cork. Fully qualified, insured, 4.8★ Google rated. Free quotes available.", - keywords: "plumber Cork, heating contractor Cork, boiler replacement Cork, boiler servicing Cork, emergency plumber Cork, heating installation", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Trusted Heating & Plumbing Services in Cork", - description: "Professional heating and plumbing solutions for Cork homeowners. 4.8★ Google rated. Over 10 years experience. Free quotes.", - type: "website", - siteName: "Darren O'Callaghan Heating & Plumbing", - images: [ - { - url: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg", - alt: "Professional heating and plumbing technician", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Trusted Heating & Plumbing Services Cork", - description: "Professional boiler replacement, heating systems & plumbing services. 4.8★ Google rated.", - images: ["http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg"], - }, -}; + title: "Darren O'Callaghan | Trusted Heating & Plumbing Services in Cork", description: "Professional boiler replacements, heating systems & plumbing services with 4.8★ Google reviews. Local, reliable, and fully qualified technicians serving Cork homeowners for over a decade."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}