Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -62,7 +62,7 @@ export default function AboutPage() {
|
||||
{ value: "Top Rated", title: "Local Service" }
|
||||
]}
|
||||
useInvertedBackground={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-male-female-deliverers-handshaking-each-other-smiling_23-2149561231.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-male-female-deliverers-handshaking-each-other-smiling_23-2149561231.jpg?_wi=2"
|
||||
imageAlt="Local service team working"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
|
||||
@@ -1,50 +1,48 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Raleway } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'LocalService Pros - Reliable Home & Business Services',
|
||||
description: 'Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.',
|
||||
keywords: ["local service, home services, business services, professional repair, local contractor, free quote"],
|
||||
openGraph: {
|
||||
"title": "LocalService Pros - Reliable Home & Business Services",
|
||||
"description": "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.",
|
||||
"url": "https://www.localservicepros.com",
|
||||
"siteName": "LocalService Pros",
|
||||
"images": [
|
||||
{
|
||||
"url": "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530687.jpg",
|
||||
"alt": "Local service professional working"
|
||||
}
|
||||
],
|
||||
"type": "website"
|
||||
},
|
||||
twitter: {
|
||||
"card": "summary_large_image",
|
||||
"title": "LocalService Pros - Reliable Home & Business Services",
|
||||
"description": "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.",
|
||||
"images": [
|
||||
"http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530687.jpg"
|
||||
]
|
||||
},
|
||||
robots: {
|
||||
"index": true,
|
||||
"follow": true
|
||||
},
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
metadataBase: new URL("https://www.localservicepros.com"),
|
||||
title: "LocalService Pros - Reliable Home & Business Services", description: "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.", keywords: ["local service", "home services", "business services", "professional repair", "local contractor", "free quote"],
|
||||
openGraph: {
|
||||
title: "LocalService Pros - Reliable Home & Business Services", description: "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.", url: "https://www.localservicepros.com", siteName: "LocalService Pros", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530687.jpg", alt: "Local service professional working"
|
||||
}
|
||||
],
|
||||
type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "LocalService Pros - Reliable Home & Business Services", description: "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.", images: [
|
||||
"http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530687.jpg"
|
||||
]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -53,7 +51,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -65,4 +65,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -116,7 +116,7 @@ export default function HomePage() {
|
||||
}
|
||||
]}
|
||||
useInvertedBackground={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-male-female-deliverers-handshaking-each-other-smiling_23-2149561231.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-male-female-deliverers-handshaking-each-other-smiling_23-2149561231.jpg?_wi=1"
|
||||
imageAlt="Local service team working"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user