Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 07:42:30 +00:00
2 changed files with 10 additions and 49 deletions

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Inter } 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 inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Boston Roofing Specialists - 5-Star Rated Contractor",
description: "Expert roofing contractor in Boston, MA. Roof installation, repairs, flat roofing, and commercial solutions. 5-star rated with 24/7 emergency service. Call (617) 749-0544.",
keywords: "roofing contractor Boston, roof repair Boston MA, flat roof installation, emergency roof repair, residential roofing, commercial roofing Boston",
metadataBase: new URL("https://bostonroofingspecialists.com"),
alternates: {
canonical: "https://bostonroofingspecialists.com",
},
openGraph: {
title: "Boston Roofing Specialists - 5-Star Roofing Contractor",
description: "Professional roofing services in Boston. Installation, repairs, flat roofing & commercial solutions. 24/7 emergency service.",
siteName: "Boston Roofing Specialists",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-people-wearing-helmets_23-2149343655.jpg",
alt: "Boston Roofing Specialists - Expert Installation",
},
],
},
twitter: {
card: "summary_large_image",
title: "Boston Roofing Specialists",
description: "5-Star Rated Roofing Contractor. Expert installation, repairs & emergency service.",
images: ["http://img.b2bpic.net/free-photo/medium-shot-people-wearing-helmets_23-2149343655.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Boston Roofing Specialists", description: "Expert roofing services in Boston"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -200,7 +200,7 @@ export default function HomePage() {
]}
showRating={true}
textboxLayout="default"
animationType="slide-up"
animationType="scale-rotate"
useInvertedBackground={false}
/>
</div>
@@ -226,4 +226,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}