5 Commits

Author SHA1 Message Date
80b3b2c301 Update src/app/page.tsx 2026-03-07 00:15:51 +00:00
0f74196895 Update src/app/layout.tsx 2026-03-07 00:15:51 +00:00
f6a2e15994 Merge version_1 into main
Merge version_1 into main
2026-03-07 00:02:41 +00:00
fe3b4478e4 Merge version_1 into main
Merge version_1 into main
2026-03-07 00:01:36 +00:00
554604f5e6 Merge version_1 into main
Merge version_1 into main
2026-03-07 00:00:12 +00:00
2 changed files with 16 additions and 64 deletions

View File

@@ -1,74 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Roof Repair & Replacement Burleson TX | Expert Roofing Services",
description: "Texas Best Roofing Solutions: Expert roof repair, replacement & storm damage specialists serving Burleson, Fort Worth, Arlington. Free inspections, insurance claim help. 4.9★ rated.",
keywords: "roof repair Burleson TX, roof replacement Fort Worth, storm damage roofing, roofing contractor DFW, free roof inspection",
metadataBase: new URL("https://texasbestroofingsolutions.com"),
alternates: {
canonical: "https://texasbestroofingsolutions.com",
},
openGraph: {
title: "Expert Roofing Solutions for Burleson & DFW",
description: "Free roof inspections, insurance claim specialists, storm damage repair. Licensed & insured. 4.9★ rating.",
url: "https://texasbestroofingsolutions.com",
siteName: "Texas Best Roofing Solutions",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/long-shot-men-working-together_23-2149343675.jpg",
alt: "Professional roofing crew",
},
],
},
twitter: {
card: "summary_large_image",
title: "Expert Roofing Contractor - Burleson TX",
description: "Get a free roof inspection from Texas Best Roofing Solutions. Insurance claim specialists.",
images: ["http://img.b2bpic.net/free-photo/long-shot-men-working-together_23-2149343675.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Texas Best Roofing Solutions - Expert Roof Repair & Replacement in Burleson, TX", description: "Professional roofing services in Burleson, TX. Free inspections, storm damage repair, insurance claims assistance. 4.9★ rating with 67+ reviews. Licensed & Insured."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -206,12 +206,11 @@ export default function HomePage() {
name: "address", type: "text", placeholder: "Your Address", required: true,
},
{
name: "roofIssue", type: "text", placeholder:
"What's the issue? (Leak, Storm Damage, Missing Shingles, Replacement, Insurance Claim)", required: false,
name: "roofIssue", type: "text", placeholder: "Type of Issue", required: false,
},
]}
textarea={{
name: "message", placeholder: "Tell us more about your roofing concern (optional)", rows: 4,
name: "message", placeholder: "Tell us more about your roofing concern. Examples: Leak, Storm Damage, Missing Shingles, Replacement, Insurance Claim (optional)", rows: 4,
required: false,
}}
useInvertedBackground={true}
@@ -270,4 +269,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}