diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 540b6b0..63a52ae 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Reliable Plumbing & Heating Services | Westernish | Vancouver", - description: "Licensed plumbing and heating professionals serving Vancouver and Lower Mainland. Fast response, fair pricing, 4.8★ rating. Call (604) 368-5243 today.", - keywords: "plumber Vancouver, plumbing services, heating services, emergency plumber, hot water tank, furnace repair, HVAC", - metadataBase: new URL("https://westernishplumbing.com"), - alternates: { - canonical: "https://westernishplumbing.com", - }, - openGraph: { - title: "Reliable Plumbing & Heating Services | Westernish", - description: "Fast, professional plumbing and heating services in Vancouver. Licensed, insured, trusted by 1000+ homeowners.", - url: "https://westernishplumbing.com", - siteName: "Westernish Plumbing & Heating", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg", - alt: "Professional plumber providing quality service", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Reliable Plumbing & Heating Services | Westernish", - description: "Fast, professional, trusted plumbing and heating services in Vancouver and Lower Mainland.", - images: ["http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Westernish Plumbing & Heating", description: "Licensed and insured plumbing professionals serving Vancouver and the Lower Mainland."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}