Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 80b3b2c301 | |||
| 0f74196895 | |||
| f6a2e15994 | |||
| fe3b4478e4 | |||
| 554604f5e6 |
@@ -1,72 +1,26 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Nunito } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const nunito = Nunito({
|
|
||||||
variable: "--font-nunito",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Roof Repair & Replacement Burleson TX | Expert Roofing Services",
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
@@ -1436,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -206,12 +206,11 @@ export default function HomePage() {
|
|||||||
name: "address", type: "text", placeholder: "Your Address", required: true,
|
name: "address", type: "text", placeholder: "Your Address", required: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "roofIssue", type: "text", placeholder:
|
name: "roofIssue", type: "text", placeholder: "Type of Issue", required: false,
|
||||||
"What's the issue? (Leak, Storm Damage, Missing Shingles, Replacement, Insurance Claim)", required: false,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textarea={{
|
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,
|
required: false,
|
||||||
}}
|
}}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
|
|||||||
Reference in New Issue
Block a user