5 Commits

Author SHA1 Message Date
0a2cece6bf Update src/app/page.tsx 2026-03-07 14:17:56 +00:00
0a3f0a1b8a Update src/app/layout.tsx 2026-03-07 14:17:55 +00:00
91c32f0d64 Merge version_1 into main
Merge version_1 into main
2026-03-07 14:15:59 +00:00
da4a98b65b Merge version_1 into main
Merge version_1 into main
2026-03-07 14:15:15 +00:00
6a001f82ea Merge version_1 into main
Merge version_1 into main
2026-03-07 14:13:57 +00:00
2 changed files with 21 additions and 38 deletions

View File

@@ -1,51 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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"), 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."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1414,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -10,7 +10,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; 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() { export default function LandingPage() {
return ( return (
@@ -57,6 +57,14 @@ export default function LandingPage() {
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
ariaLabel="Emergency plumbing hero section" 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> </div>