diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4663a48..e80a04c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Emergency Plumbing & Heating in Kamloops | Adasak Mechanical", description: "4.9-star rated plumbing & heating services in Kamloops, BC. Emergency repairs, furnace maintenance, water systems & more. Available 24/7. Call now!", keywords: "plumbing Kamloops, emergency plumber, heating repair, furnace maintenance, water softener, boiler repair", metadataBase: new URL("https://www.adasakmechanical.ca"), - alternates: { - canonical: "https://www.adasakmechanical.ca"}, - openGraph: { - title: "Expert Plumbing & Heating Services in Kamloops", description: "Trusted 4.9-star rated plumbing and heating company. Emergency service available 24/7.", url: "https://www.adasakmechanical.ca", siteName: "Adasak Mechanical", type: "website", images: [ - { - url: "https://www.adasakmechanical.ca/og-image.jpg", alt: "Adasak Mechanical - Professional Plumbing & Heating Services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Emergency Plumbing & Heating | Adasak Mechanical Kamloops", description: "24/7 emergency plumbing and heating services with 4.9-star reviews.", images: ["https://www.adasakmechanical.ca/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Adasak Mechanical - Plumbing & Heating Services in Kamloops", description: "Expert plumbing and heating services in Kamloops. 24/7 emergency repairs, professional installations, and water quality solutions. 4.9-star rated service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -