Merge version_2 into main #4
@@ -1,46 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Local Service | Expert & Trusted Professional Services", description: "Professional local services you can trust. Expert technicians, 24/7 emergency service, free quotes. Serving your community with quality and reliability.", keywords: "local services, professional service, emergency service, experienced technicians, local business", openGraph: {
|
||||
title: "Local Service | Expert & Trusted Professional Services", description: "Professional local services you can trust. Expert technicians, 24/7 emergency service, free quotes.", type: "website", siteName: "ProService"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Local Service | Expert & Trusted Professional Services", description: "Professional local services you can trust. Expert technicians, 24/7 emergency service."
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "ProService - Expert Local Service You Can Trust", description: "Professional, reliable service for your home and business. Fast response, quality workmanship, guaranteed satisfaction."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1408,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -257,7 +257,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Get Your Free Quote Today"
|
||||
description="Fill out the form below or call us directly. We'll respond quickly with a detailed estimate and answer any questions you have."
|
||||
description="Get a free quote in minutes—no hidden fees, no obligation"
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/investor-visiting-industry-40-solar-panels-plant-talking-with-engineers_482257-126172.jpg"
|
||||
imageAlt="commercial service"
|
||||
|
||||
Reference in New Issue
Block a user