diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7989b20..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1417 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -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"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Curly J's Electrical | Licensed Electrician Brunswick VIC", description: "Professional electrical services in Brunswick VIC. Smart lighting, safety switches, smoke alarms & more. Licensed, insured, 5-star rated. Call 0412 448 604.", keywords: "electrician Brunswick, licensed electrician VIC, electrical services, smart lighting, safety switches, smoke alarms", openGraph: { - title: "Curly J's Electrical - Your Trusted Local Electrician", description: "Professional electrical solutions from a licensed expert in Brunswick. Smart home automation, safety upgrades, and general electrical work.", type: "website", siteName: "Curly J's Electrical Innovations"}, - twitter: { - card: "summary_large_image", title: "Curly J's Electrical Services", description: "Licensed electrician in Brunswick, VIC offering smart lighting, safety switches, and professional electrical solutions."}, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -