Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 21:42:40 +00:00
2 changed files with 8 additions and 44 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Raleway } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Ozarks Roofing LLC | Professional Roofing Services", description: "Expert residential and commercial roofing services in the Ozarks. 25+ years of quality installations, repairs, and maintenance. Family-owned and fully insured.", keywords: "roofing, roof repair, roof replacement, Ozarks, Springfield MO, residential roofing, commercial roofing, contractor", openGraph: {
title: "Ozarks Roofing LLC | Professional Roofing Services", description: "Expert residential and commercial roofing services in the Ozarks. 25+ years of quality installations, repairs, and maintenance.", type: "website", siteName: "Ozarks Roofing LLC", images: [
{
url: "http://img.b2bpic.net/free-photo/worker-with-level-building-roof-house_23-2148748855.jpg", alt: "Professional roofing services by Ozarks Roofing LLC"
}
]
},
twitter: {
card: "summary_large_image", title: "Ozarks Roofing LLC | Professional Roofing Services", description: "Expert residential and commercial roofing services in the Ozarks. 25+ years of quality installations, repairs, and maintenance.", images: ["http://img.b2bpic.net/free-photo/worker-with-level-building-roof-house_23-2148748855.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Ozarks Roofing LLC | Expert Roofing Solutions", description: "Professional roofing services for Ozarks homes and businesses. Expert installations, repairs, and inspections with 25+ years of trusted service."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -177,7 +177,7 @@ export default function LandingPage() {
<ContactSplit
tag="Ready to Get Started?"
title="Schedule Your Free Roof Inspection Today"
description="Don't wait for roof problems to become expensive emergencies. Contact Ozarks Roofing LLC for a comprehensive evaluation and personalized recommendations."
description="Small roof issues can become costly within weeks. Schedule your free inspection now to protect your investment and catch problems early."
tagIcon={Phone}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
@@ -187,7 +187,7 @@ export default function LandingPage() {
mediaPosition="right"
inputPlaceholder="Enter your email address"
buttonText="Get Free Quote"
termsText="We'll contact you within 24 hours to confirm your inspection appointment. Your information is secure and never shared."
termsText="Same-day consultation offered. Your information is secure and never shared."
/>
</div>