Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 00:51:28 +00:00
2 changed files with 11 additions and 38 deletions

View File

@@ -1,48 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: "ProFlow Plumbing - 24/7 Emergency Plumbing Services", description: "Expert plumbing services available 24/7. Emergency repairs, maintenance plans, and professional installations. Fast response, certified technicians, fair pricing.", keywords: "plumbing services, emergency plumber, drain cleaning, water heater repair, 24/7 plumbing", openGraph: {
title: "ProFlow Plumbing - Professional Plumbing Solutions", description: "24/7 emergency plumbing services with certified technicians. Same-day service, fair pricing, customer satisfaction guaranteed.", siteName: "ProFlow Plumbing", type: "website"},
robots: {
index: true,
follow: true,
},
title: 'ProFlow Plumbing - 24/7 Emergency Plumbing Services',
description: 'Expert plumbing solutions with certified technicians available 24/7 for emergency repairs, maintenance, and installations.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -48,7 +48,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
buttons={[
{ text: "Schedule Service", href: "contact" },
{ text: "Call Now", href: "#" }
{ text: "Call (555) 234-5678", href: "tel:+15552345678" }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/steel-faucet-interior-modern-bathroom-with-window_169016-26975.jpg"