Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 02:46:42 +00:00
2 changed files with 15 additions and 55 deletions

View File

@@ -1,67 +1,28 @@
import type { Metadata } from "next";
import { Mulish } 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 mulish = Mulish({
variable: "--font-mulish",
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: "Silverline Roofing Experts | South Florida Roof Repair & Replacement",
description: "Licensed & insured roofing contractor in South Florida. Expert roof repair, leak detection, inspections & replacements. 4.9★ Google rating. Free estimates.",
keywords: "roofing contractor South Florida, roof repair Pompano Beach, roof replacement Broward County, roof leak repair, licensed roofer",
metadataBase: new URL("https://silverlineroofingexperts.com"),
alternates: {
canonical: "https://silverlineroofingexperts.com",
},
openGraph: {
title: "Silverline Roofing Experts | South Florida Roof Services",
description: "Professional roofing services in South Florida. Roof repair, replacement, leak detection & inspections. Family-owned, fully licensed & insured.",
url: "https://silverlineroofingexperts.com",
siteName: "Silverline Roofing Experts",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/man-sitting-roof_23-2148748778.jpg",
alt: "Silverline Roofing - Professional South Florida Roofing",
},
],
},
twitter: {
card: "summary_large_image",
title: "Silverline Roofing Experts | South Florida",
description: "Expert roofing contractor. Repairs, replacements & inspections. 4.9★ rated.",
images: ["http://img.b2bpic.net/free-photo/man-sitting-roof_23-2148748778.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Silverline Roofing | South Florida Roofing Experts", description: "Professional roofing services in South Florida. Roof repairs, replacements, leak detection, and inspections."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1429,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -158,7 +158,7 @@ export default function HomePage() {
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg?_wi=1", imageAlt: "Lisa Thompson"},
]}
title="Customer Reviews"
description="⭐ 4.9 Google Rating with 14+ reviews. Real feedback from satisfied homeowners."
description="⭐ 4.9/5 Rating 14+ Verified Reviews • 500+ Homes Served"
gridVariant="uniform-all-items-equal"
carouselMode="buttons"
animationType="slide-up"
@@ -200,4 +200,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}