Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user