diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d892323..35f7fa5 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,24 @@
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";
+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 openSans = Open_Sans({
- variable: "--font-open-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Professional Plastering & Rendering Services | ProPlaster", description: "Expert local plastering company specializing in ceiling repairs, rendering, damp treatment, and popcorn removal. Clean, tidy work guaranteed. Free quote within 24 hours.", keywords: "plasterer near me, plastering services, ceiling repair, popcorn ceiling removal, rendering specialist, damp treatment, local plastering, professional plasterer", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Professional Plastering & Rendering Done Right", description: "Trusted local plasterers delivering flawless finishes. Ceiling repairs, rendering, damp treatment & more. Clean, reliable service.", url: "https://proplaster.local", siteName: "ProPlaster", type: "website"},
- twitter: {
- card: "summary_large_image", title: "Professional Plastering Services | ProPlaster", description: "Expert local plasterers. Ceiling repairs, rendering, damp treatment. Free quotes. Zero mess guaranteed."},
-};
+ title: "MOM Plastering LTD | Professional Plastering & Rendering Services", description: "Expert local plasterers delivering flawless finishes. Ceiling repairs, rendering, damp treatment, and more. Clean, reliable, insured service."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-