Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-04 16:05:07 +00:00
2 changed files with 7 additions and 32 deletions

View File

@@ -1,44 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Brothers Plumbing | Emergency & Professional Plumbing Services", description: "24/7 emergency plumbing services with fast response times. Licensed professionals for repairs, installations, and maintenance. Call now for same-day service.", keywords: "plumbing, emergency plumber, plumbing repair, water heater, drain cleaning, professional plumber", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Brothers Plumbing | Professional Plumbing Services", description: "Expert plumbing solutions available 24/7. Fast, reliable, and affordable services for your home or business.", type: "website", siteName: "Brothers Plumbing"},
twitter: {
card: "summary_large_image", title: "Brothers Plumbing | Professional Plumbing Services", description: "24/7 emergency plumbing services with experienced professionals."},
};
title: "Brothers Plumbing - Expert Plumbing Solutions", description: "24/7 emergency plumbing services with fast, reliable repairs for your home or business."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
showDimOverlay={true}
buttons={[
{ text: "Schedule Service", href: "#contact" },
{ text: "Emergency Call", href: "tel:+1-555-0123" },
{ text: "Call Now - Available 24/7", href: "tel:+1-555-0123" },
]}
/>
</div>