Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a2dcfbfbe9 | |||
| 5937e7628d | |||
| f7a7ecf5c2 | |||
| 3730e7b5c0 | |||
| d550de884b | |||
| 412344360a | |||
| 0a71234583 | |||
| ee0ad627fa | |||
| b72d80e37f | |||
| edc1179564 | |||
| 022d1edb00 | |||
| 7e3aa0b3d7 |
@@ -1,53 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } 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 montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Maggie Roofing Contractors | Professional Roofing Services", description: "Expert residential and commercial roofing services. Licensed, insured, and dedicated to quality craftsmanship. Get your free roofing estimate today.", keywords: "roofing contractors, roof repair, roof installation, roof replacement, residential roofing, commercial roofing, emergency roof repair", metadataBase: new URL("https://maggieroofing.com"),
|
||||
alternates: {
|
||||
canonical: "https://maggieroofing.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Maggie Roofing Contractors | Professional Roofing Services", description: "Expert residential and commercial roofing services with quality craftsmanship and honest pricing.", type: "website", siteName: "Maggie Roofing Contractors", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/man-sitting-roof_23-2148748778.jpg", alt: "Professional roofing contractors at work"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Maggie Roofing Contractors", description: "Professional roofing solutions you can trust. Free estimates available.", images: ["http://img.b2bpic.net/free-photo/man-sitting-roof_23-2148748778.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Maggie Roofing", description: "Professional roofing solutions"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function LandingPage() {
|
||||
tag="About Us"
|
||||
tagIcon={Building2}
|
||||
tagAnimation="slide-up"
|
||||
title="About Maggie Roofing Contractors\n\nMaggie Roofing Contractors is a dedicated roofing company committed to delivering durable, high-quality roofing solutions. We specialize in roof installation, repair, maintenance, and inspections. Our mission is to provide reliable service, transparent pricing, and long-lasting protection for your home or business. With years of industry experience, a fully licensed and insured team, and a commitment to customer satisfaction, we are your trusted partner for all roofing needs."
|
||||
title="Expert Roofing Services with Integrity and Quality Craftsmanship"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Learn More", href: "#services" }
|
||||
@@ -230,4 +230,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user