Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-11 04:24:04 +00:00
6 changed files with 51 additions and 16 deletions

View File

@@ -91,7 +91,7 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg"
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg?_wi=4"
imageAlt="Professional construction team at work"
logoText="PFC Group"
copyrightText="© 2025 PFC Group. All rights reserved. Protecting Structures with Excellence."

View File

@@ -92,7 +92,7 @@ export default function ContactPage() {
{ text: "View Our Services", href: "/services" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/railroad-tracks_1359-127.jpg"
imageSrc="http://img.b2bpic.net/free-photo/railroad-tracks_1359-127.jpg?_wi=2"
imageAlt="Contact PFC Group for professional weatherproofing services"
mediaAnimation="slide-up"
imagePosition="right"
@@ -138,7 +138,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg"
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg?_wi=5"
imageAlt="Professional construction team working on site"
logoText="PFC Group"
copyrightText="© 2025 PFC Group. All rights reserved. Protecting Structures with Excellence."

View File

@@ -1,28 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "PFC Group - Professional Weatherproofing & Concrete Repair Solutions",
description: "PFC Group offers advanced weatherproofing, concrete repair, and structural protection services with 25+ years of expertise. Request a quote today.",
keywords: "weatherproofing, concrete repair, roof waterproofing, basement waterproofing, structural repair, protective coatings, leak sealing",
metadataBase: new URL("https://pfcgroup.com"),
alternates: {
canonical: "https://pfcgroup.com",
},
openGraph: {
title: "PFC Group - Expert Weatherproofing & Concrete Repair",
description: "Trusted structural protection solutions for commercial and residential properties. 500+ completed projects.",
url: "https://pfcgroup.com",
siteName: "PFC Group",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/railroad-tracks_1359-127.jpg",
alt: "PFC Group Professional Construction Services",
},
],
},
twitter: {
card: "summary_large_image",
title: "PFC Group - Weatherproofing & Concrete Repair",
description: "Professional structural protection with 25+ years of expertise.",
images: ["http://img.b2bpic.net/free-photo/railroad-tracks_1359-127.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -63,7 +63,7 @@ export default function HomePage() {
{ text: "View Our Work", href: "/portfolio" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/railroad-tracks_1359-127.jpg"
imageSrc="http://img.b2bpic.net/free-photo/railroad-tracks_1359-127.jpg?_wi=1"
imageAlt="Professional weatherproofing and concrete repair work"
mediaAnimation="slide-up"
imagePosition="right"
@@ -235,7 +235,7 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg"
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg?_wi=1"
imageAlt="Professional construction team at work"
logoText="PFC Group"
copyrightText="© 2025 PFC Group. All rights reserved. Protecting Structures with Excellence."

View File

@@ -164,7 +164,7 @@ export default function PortfolioPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg"
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg?_wi=3"
imageAlt="Professional construction team at work"
logoText="PFC Group"
copyrightText="© 2025 PFC Group. All rights reserved. Protecting Structures with Excellence."

View File

@@ -197,7 +197,7 @@ export default function ServicesPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg"
imageSrc="http://img.b2bpic.net/free-photo/businessman-discussing-blueprint-with-architects_107420-74344.jpg?_wi=2"
imageAlt="Professional construction team at work"
logoText="PFC Group"
copyrightText="© 2025 PFC Group. All rights reserved. Protecting Structures with Excellence."