Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-03-07 14:18:00 +00:00
2 changed files with 21 additions and 38 deletions

View File

@@ -1,52 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } 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 halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "24/7 Emergency Plumbing in NYC | Fast Response", description: "Licensed NYC plumbers available 24/7 for emergency drain, leak, and sewer repairs. Fast response, upfront pricing, no surprises. Call now for immediate help.", keywords: "emergency plumbing NYC, 24/7 plumber, drain cleaning, leak repair, licensed plumber NYC", metadataBase: new URL("https://empirenyc plumbers.com"),
alternates: {
canonical: "https://empirenyc plumbers.com"},
openGraph: {
title: "24/7 Emergency Plumbing in NYC | Empire NYC Plumbers", description: "Fast, reliable emergency plumbing service in Manhattan and all NYC boroughs. Licensed, insured, upfront pricing.", url: "https://empirenyc plumbers.com", siteName: "Empire NYC Plumbers", type: "website"},
twitter: {
card: "summary_large_image", title: "24/7 Emergency Plumbing in NYC", description: "Licensed NYC plumbers ready to help. Fast response, upfront pricing, no surprises."},
robots: {
index: true,
follow: true,
},
};
title: "Empire NYC Plumbers | 24/7 Emergency Plumbing Services", description: "Licensed, insured emergency plumbing in NYC. Fast response, upfront pricing, no hidden fees. Available 24/7 for drain cleaning, leaks, water heaters & more."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Phone, Wrench } from 'lucide-react';
import { Phone, Wrench, CheckCircle, Lock, Zap, DollarSign } from 'lucide-react';
export default function LandingPage() {
return (
@@ -57,6 +57,14 @@ export default function LandingPage() {
]}
buttonAnimation="slide-up"
ariaLabel="Emergency plumbing hero section"
marqueeItems={[
{ type: "text-icon", text: "24/7 Response", icon: Zap },
{ type: "text-icon", text: "NYC Licensed", icon: CheckCircle },
{ type: "text-icon", text: "Fully Insured", icon: Lock },
{ type: "text-icon", text: "No Hidden Fees", icon: DollarSign }
]}
marqueeSpeed={30}
showMarqueeCard={true}
/>
</div>