Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e70235a367 | |||
| 7e712b3517 | |||
| 6d8aa2d6da |
@@ -1,20 +1,57 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
|
import { Halant } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "@/styles/globals.css";
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import "./globals.css";
|
||||||
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const inter = Inter({ subsets: ["latin"] });
|
const halant = Halant({
|
||||||
|
variable: "--font-halant", subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const dmSans = DM_Sans({
|
||||||
|
variable: "--font-dm-sans", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Joel Handyman Services", description: "Professional home repairs in Brooklyn. Licensed, insured, transparent pricing. Plumbing, electrical, carpentry, drywall repairs."};
|
title: "Joel Handyman Services | Brooklyn NY | Same-Day Repairs", description: "Professional handyman services in Brooklyn. Plumbing, electrical, carpentry, drywall repair. Licensed, insured, 5.0-star rated. Same-day service available.", keywords: "handyman Brooklyn, plumbing repair, electrical services, carpentry, drywall repair, home repair Brooklyn NY", metadataBase: new URL("https://joelhandymanservices.com"),
|
||||||
|
alternates: {
|
||||||
|
canonical: "https://joelhandymanservices.com"},
|
||||||
|
openGraph: {
|
||||||
|
title: "Joel Handyman Services | Trusted Brooklyn Home Repair", description: "Professional handyman for plumbing, electrical, carpentry, and wall repair. Licensed. Insured. 5-star Google rated.", url: "https://joelhandymanservices.com", siteName: "Joel Handyman Services", type: "website", images: [
|
||||||
|
{
|
||||||
|
url: "http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746296.jpg", alt: "professional handyman with tools organized Brooklyn"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image", title: "Joel Handyman Services | Brooklyn Home Repair", description: "Professional plumbing, electrical, carpentry, and drywall repair. Same-day service. 5.0-star Google rated.", images: ["http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746296.jpg"],
|
||||||
|
},
|
||||||
|
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">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body className={inter.className}>{children}
|
<ServiceWrapper>
|
||||||
|
<body
|
||||||
|
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||||
|
>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1382,6 +1419,7 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ export default function LandingPage() {
|
|||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardTwentySeven
|
<FeatureCardTwentySeven
|
||||||
title="Our Services"
|
title="Our Services"
|
||||||
description="Expert solutions for your home. Click each card to reveal service details and pricing"
|
description="Expert solutions for your home. Click each service to learn more."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "plumbing", title: "Plumbing & Pipe Repair", description: "Leaking faucets, pipe repairs, fixture replacements. We arrive with the right tools and complete the job right the first time.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-man-sitting-floor-with-tap_259150-58260.jpg", imageAlt: "Professional plumbing repair"
|
id: "plumbing", title: "Plumbing & Pipe Repair", description: "Leaking faucets, pipe repairs, fixture replacements. We arrive with the right tools and complete the job right the first time.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-man-sitting-floor-with-tap_259150-58260.jpg", imageAlt: "Professional plumbing repair"
|
||||||
|
|||||||
Reference in New Issue
Block a user