Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50f4cb40bd | |||
| 2fd0a41c17 | |||
| 36e17806c7 | |||
| c9c694e645 | |||
| faaeba16be |
@@ -1,53 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Manrope } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Professional Local Services | ProServe - Fast & Reliable", description: "Trusted local service provider with 15+ years of experience. Licensed, insured, same-day response. Plumbing, electrical, HVAC, and more. Get your free quote today.", keywords: "local services, plumbing, electrical, HVAC, home repair, licensed contractor, trusted service provider", metadataBase: new URL("https://www.proserve.local"),
|
title: "ProServe - Professional Local Services", description: "Fast, reliable, and affordable home services. Licensed & insured with same-day response times."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://www.proserve.local"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "ProServe - Your Local Service Expert", description: "Trusted professional services with transparent pricing and 24/7 availability", url: "https://www.proserve.local", siteName: "ProServe", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/business-team-office_1098-746.jpg", alt: "ProServe professional service team"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "ProServe - Trusted Local Services", description: "Fast, reliable, and affordable solutions for your home", images: ["http://img.b2bpic.net/free-photo/business-team-office_1098-746.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={`${manrope.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Ready to Get Started?"
|
tag="Ready to Get Started?"
|
||||||
title="Get Your Free Quote Today"
|
title="Free Quote in 2 Hours or Less"
|
||||||
description="Contact us for immediate assistance. We respond within 2 hours and provide transparent pricing with no hidden fees."
|
description="Contact us for immediate assistance. We respond within 2 hours and provide transparent pricing with no hidden fees."
|
||||||
tagIcon={Phone}
|
tagIcon={Phone}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -210,7 +210,7 @@ export default function LandingPage() {
|
|||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Enter your email address"
|
inputPlaceholder="Enter your email address"
|
||||||
buttonText="Schedule Service"
|
buttonText="Schedule Service"
|
||||||
termsText="We'll respond within 2 hours. Your information is secure and never shared."
|
termsText="2-hour response guarantee. Your information is secure and never shared. We'll get back to you fast with a transparent quote."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user