diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 62e65f2..e8af6fe 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,46 +1,22 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } from "next/font/google";
import { Inter } 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 libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville", subsets: ["latin"],
- weight: ["400", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "MJ Airconditioning | HVAC Services Melbourne | 5-Star Rated", description: "Expert air conditioning & heating services in Eastern & South Eastern Melbourne. 15+ years experience. Same-day repairs. Licensed & ARC certified. Call 0411 966 361 for free quote.", keywords: "air conditioning, heating, HVAC, Melbourne, repairs, installation, split system, ducted heating", openGraph: {
- title: "MJ Airconditioning | HVAC Services Melbourne", description: "Trusted HVAC specialists serving Eastern & South Eastern Melbourne with 15+ years experience and 5-star customer ratings.", siteName: "MJ Airconditioning", type: "website"
- },
- twitter: {
- card: "summary_large_image", title: "MJ Airconditioning | HVAC Services Melbourne", description: "Expert air conditioning & heating repairs and installation. Same-day service available."
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "MJ Airconditioning", description: "Expert Air Conditioning & Heating Solutions"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-