4 Commits

Author SHA1 Message Date
e983152286 Update src/app/page.tsx 2026-03-04 18:52:41 +00:00
d15d2fecdc Update src/app/layout.tsx 2026-03-04 18:52:40 +00:00
a9f1b98660 Merge version_2 into main
Merge version_2 into main
2026-03-04 18:51:09 +00:00
3f20621ffb Merge version_2 into main
Merge version_2 into main
2026-03-04 18:49:32 +00:00
2 changed files with 8 additions and 27 deletions

View File

@@ -1,38 +1,20 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Union Roofing | Expert Roofing Solutions & Installation", description: "Premier roofing services with 25+ years experience. Expert installation, repair, and maintenance for residential and commercial properties. Free quote available.", keywords: "roofing, roof installation, roof repair, roofing contractor, professional roofer, residential roofing, commercial roofing", openGraph: {
title: "Union Roofing - Trusted Roofing Services", description: "Get expert roofing solutions from licensed professionals with 25+ years of experience. Free inspections and quotes available.", siteName: "Union Roofing", type: "website"
},
twitter: {
card: "summary_large_image", title: "Union Roofing - Premier Roofing Services", description: "Expert roofing installation, repair, and maintenance. 2000+ satisfied customers."
},
robots: {
index: true,
follow: true,
},
};
title: "Union Roofing - Premier Roofing Solutions", description: "Expert roofing services with 20+ years of experience. From installation to repairs, we deliver quality craftsmanship and lasting protection for your property."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1400,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -200,8 +200,8 @@ export default function LandingPage() {
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
inputPlaceholder="your@email.com"
buttonText="Get Free Quote"
termsText="We respect your privacy. We'll only use your email to send you a quote and follow-up information."
buttonText="Get Free Quote Today"
termsText="Limited-time free inspections available—no obligation. We respect your privacy and will only use your email to send you a quote and follow-up information."
/>
</div>