Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a030dd26ab | |||
| e518640443 | |||
| bdc812230d | |||
| 13e485d7ce | |||
| 87a3f802a5 | |||
| 83b0ee82ee | |||
| 183557401a |
@@ -1,54 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } 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 publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "NYC Quality Plumbing - 24/7 Emergency Plumbing Services",
|
||||
description: "Fast, reliable 24/7 emergency plumbing services in New York City. Licensed & insured plumbers. Leak detection, drain cleaning, water heaters & more.",
|
||||
keywords: "plumber NYC, emergency plumbing, 24 hour plumber, leak detection, drain cleaning",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "NYC Quality Plumbing - Your Trusted Emergency Plumber",
|
||||
description: "Available 24/7 for emergency plumbing repairs, leak detection, and drain cleaning throughout New York City.",
|
||||
siteName: "NYC Quality Plumbing",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721539.jpg",
|
||||
alt: "Professional plumbing service in NYC",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "NYC Quality Plumbing - 24/7 Emergency Service",
|
||||
description: "Call (332) 222-0135 for trusted plumbing services in New York City.",
|
||||
images: ["http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721539.jpg"],
|
||||
},
|
||||
};
|
||||
title: "NYC Quality Plumbing | Emergency Services 24/7", description: "Fast, reliable plumbing services across New York City. Licensed, experienced, and available anytime for emergencies, repairs, and installations."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,17 +30,17 @@ const HomePage = () => {
|
||||
|
||||
const serviceFeatures = [
|
||||
{
|
||||
id: "emergency", title: "Emergency Plumbing", description: "24/7 emergency response for burst pipes, leaks, and urgent issues. Fast arrival times across NYC.", tag: "Emergency", imageSrc: "http://img.b2bpic.net/free-photo/girl-s-hand-filling-cup-with-water_23-2147824128.jpg", imageAlt: "emergency plumbing burst water"},
|
||||
id: "emergency", title: "Emergency Plumbing", description: "24/7 rapid response for urgent issues.", tag: "Emergency", imageSrc: "http://img.b2bpic.net/free-photo/girl-s-hand-filling-cup-with-water_23-2147824128.jpg", imageAlt: "emergency plumbing burst water"},
|
||||
{
|
||||
id: "leak-detection", title: "Leak Detection", description: "Advanced technology to locate hidden leaks quickly and prevent water damage to your property.", tag: "Detection", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721566.jpg", imageAlt: "leak water detection tools"},
|
||||
id: "leak-detection", title: "Leak Detection", description: "Advanced tech pinpoints hidden leaks.", tag: "Detection", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721566.jpg", imageAlt: "leak water detection tools"},
|
||||
{
|
||||
id: "drain-cleaning", title: "Drain Cleaning", description: "Professional drain cleaning and unclogging services using state-of-the-art equipment.", tag: "Maintenance", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg", imageAlt: "drain cleaning plumbing professional"},
|
||||
id: "drain-cleaning", title: "Drain Cleaning", description: "Expert unclogging with state-of-art tools.", tag: "Maintenance", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg", imageAlt: "drain cleaning plumbing professional"},
|
||||
{
|
||||
id: "water-heater", title: "Water Heater Services", description: "Repair, installation, and maintenance of water heaters for consistent hot water supply.", tag: "Installation", imageSrc: "http://img.b2bpic.net/free-photo/view-plumber-working-fix-problems_23-2150990693.jpg", imageAlt: "water heater installation tank"},
|
||||
id: "water-heater", title: "Water Heater Services", description: "Install, repair & maintain heater systems.", tag: "Installation", imageSrc: "http://img.b2bpic.net/free-photo/view-plumber-working-fix-problems_23-2150990693.jpg", imageAlt: "water heater installation tank"},
|
||||
{
|
||||
id: "pipe-repair", title: "Pipe Repair & Replacement", description: "Replace aging pipes and repair damaged lines with quality materials and expert craftsmanship.", tag: "Repair", imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-13430.jpg", imageAlt: "pipe repair replacement plumbing"},
|
||||
id: "pipe-repair", title: "Pipe Repair & Replacement", description: "Replace damaged lines with quality.", tag: "Repair", imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-13430.jpg", imageAlt: "pipe repair replacement plumbing"},
|
||||
{
|
||||
id: "commercial", title: "Commercial Plumbing", description: "Specialized plumbing solutions for office buildings, restaurants, and commercial properties.", tag: "Commercial", imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55834.jpg", imageAlt: "commercial plumbing office professional"},
|
||||
id: "commercial", title: "Commercial Plumbing", description: "Specialized solutions for businesses.", tag: "Commercial", imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55834.jpg", imageAlt: "commercial plumbing office professional"},
|
||||
];
|
||||
|
||||
const metrics = [
|
||||
@@ -183,4 +183,4 @@ const HomePage = () => {
|
||||
);
|
||||
};
|
||||
|
||||
export default HomePage;
|
||||
export default HomePage;
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #1b0c25;;
|
||||
--primary-cta: #1b0c25;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #ff93e4;;
|
||||
--background-accent: #e8a8c3;; */
|
||||
/* --background: #ffffff;;;
|
||||
--card: #f9f9f9;;;
|
||||
--foreground: #000612e6;;;
|
||||
--primary-cta: #15479c;;;
|
||||
--secondary-cta: #f9f9f9;;;
|
||||
--accent: #e2e2e2;;;
|
||||
--background-accent: #c4c4c4;;; */
|
||||
|
||||
--background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #1b0c25;;
|
||||
--primary-cta: #1b0c25;;
|
||||
--primary-cta-text: #f7f6f7;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta-text: #1b0c25;;
|
||||
--accent: #ff93e4;;
|
||||
--background-accent: #e8a8c3;;
|
||||
--background: #ffffff;;;
|
||||
--card: #f9f9f9;;;
|
||||
--foreground: #000612e6;;;
|
||||
--primary-cta: #15479c;;;
|
||||
--primary-cta-text: #ffffff;;;
|
||||
--secondary-cta: #f9f9f9;;;
|
||||
--secondary-cta-text: #000612e6;;;
|
||||
--accent: #e2e2e2;;;
|
||||
--background-accent: #c4c4c4;;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user