diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5023d07..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Woodbury Plumbing | Trusted Christchurch Plumber", - description: "Reliable Christchurch plumber specializing in hot water systems, renovations, and plumbing repairs. Call Ray today for fast service.", - keywords: "Christchurch plumber, plumber Harewood, hot water cylinder, kitchen plumbing, bathroom renovation, leak repair", - metadataBase: new URL("https://www.woodburyplumbing.co.nz"), - alternates: { - canonical: "https://www.woodburyplumbing.co.nz", - }, - openGraph: { - title: "Woodbury Plumbing | Trusted Christchurch Plumber", - description: "Professional plumbing services in Christchurch. Hot water systems, renovations, repairs. 4.6★ rated. Call +64 27 433 4464", - url: "https://www.woodburyplumbing.co.nz", - siteName: "Woodbury Plumbing", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/pleased-young-male-builder-wearing-uniform-safety-helmet-showing-two-pink_141793-74761.jpg", - alt: "Professional plumber at work", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Woodbury Plumbing | Trusted Christchurch Plumber", - description: "Fast, reliable plumbing services in Christchurch. Call +64 27 433 4464 today.", - images: ["http://img.b2bpic.net/free-photo/pleased-young-male-builder-wearing-uniform-safety-helmet-showing-two-pink_141793-74761.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -