Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fb961b6b7f | |||
| fb3cc3f503 | |||
| 7a90701f9f |
@@ -1,57 +1,20 @@
|
|||||||
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 { DM_Sans } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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 | 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"),
|
title: "Joel Handyman Services", description: "Professional home repairs in Brooklyn. Licensed, insured, transparent pricing. Plumbing, electrical, carpentry, drywall repairs."};
|
||||||
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" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1382,6 @@ 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 service to learn more."
|
description="Expert solutions for your home. Click each card to reveal service details and pricing"
|
||||||
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