Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-04 18:39:52 +00:00
2 changed files with 16 additions and 42 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -28,7 +28,7 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
brandName="ProPlaster"
brandName="MOM Plastering LTD"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Services", id: "services" },
@@ -63,7 +63,7 @@ export default function LandingPage() {
<div id="trust" data-section="trust">
<MetricCardFourteen
title="Why Homeowners Trust ProPlaster for Professional Results"
title="Why Homeowners Trust MOM Plastering LTD for Professional Results"
tag="Our Guarantee"
tagAnimation="slide-up"
metrics={[
@@ -104,7 +104,7 @@ export default function LandingPage() {
<div id="why-us" data-section="why-us">
<SplitAbout
title="Why Choose ProPlaster?"
title="Why Choose MOM Plastering LTD?"
description="We're more than just skilled plasterers. We're committed to delivering exceptional results while respecting your home and family."
tag="Our Commitment"
tagIcon={Shield}
@@ -122,7 +122,7 @@ export default function LandingPage() {
useInvertedBackground={false}
imagePosition="right"
textboxLayout="default"
ariaLabel="Why choose ProPlaster for your plastering needs"
ariaLabel="Why choose MOM Plastering LTD for your plastering needs"
/>
</div>
@@ -234,7 +234,7 @@ export default function LandingPage() {
{
title: "Contact", items: [
{ label: "📞 Call Us", href: "tel:+441234567890" },
{ label: "📧 Email", href: "mailto:hello@proplaster.com" },
{ label: "📧 Email", href: "mailto:hello@momplastering.com" },
{ label: "Get a Quote", href: "#contact" },
{ label: "Service Area", href: "#" }
]
@@ -247,7 +247,7 @@ export default function LandingPage() {
]
}
]}
bottomLeftText="© 2025 ProPlaster. All rights reserved. Fully Insured & Professional."
bottomLeftText="© 2025 MOM Plastering LTD. All rights reserved. Fully Insured & Professional."
bottomRightText="Professional Plastering & Rendering Services"
ariaLabel="Site footer with navigation and contact information"
/>