Merge version_2 into main #4
@@ -1,50 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Local Services | Fast & Reliable", description: "Trusted local service provider offering plumbing, electrical, and HVAC solutions. Free quotes, 24/7 emergency service. Satisfaction guaranteed.", keywords: "local services, plumbing, electrical, HVAC, emergency service, free quote", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Professional Local Services | Local Pro", description: "Get fast, reliable professional services in your area. Free estimates available now.", type: "website", siteName: "Local Pro Services"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Professional Local Services", description: "Trusted plumbing, electrical, and HVAC services available 24/7"},
|
||||
};
|
||||
title: "Local Pro Services", description: "Professional local services you can trust"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -81,7 +81,8 @@ export default function LandingPage() {
|
||||
title: "Transparent Pricing", description: "No hidden fees. We provide upfront quotes before any work begins.", icon: DollarSign,
|
||||
},
|
||||
{
|
||||
title: "Satisfaction Guaranteed", description: "100% satisfaction guarantee or your money back."},
|
||||
title: "Satisfaction Guaranteed", description: "100% satisfaction guarantee or your money back."
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/colleagues-working-together-project_23-2149286114.jpg"
|
||||
imageAlt="Professional team"
|
||||
@@ -101,15 +102,15 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
tag: "Plumbing", title: "Plumbing Repair", subtitle: "Expert plumbing solutions", description: "From leaky faucets to major pipe repairs, our experienced plumbers handle all plumbing needs efficiently and professionally.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746308.jpg", imageAlt: "Plumbing service", buttons: [{ text: "Request Service", href: "#contact" }],
|
||||
tag: "Plumbing", title: "Plumbing Repair", subtitle: "Expert plumbing solutions", description: "From leaky faucets to major pipe repairs, our experienced plumbers handle all plumbing needs efficiently and professionally.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746308.jpg", imageAlt: "Plumbing service", buttons: [{ text: "Get Free Quote Now", href: "#contact" }],
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
tag: "Electrical", title: "Electrical Services", subtitle: "Safe and reliable", description: "Licensed electricians ready to handle wiring, installations, repairs, and safety inspections for residential properties.", imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-electrical-panel-male-electrician-overalls_169016-67118.jpg", imageAlt: "Electrical service", buttons: [{ text: "Request Service", href: "#contact" }],
|
||||
tag: "Electrical", title: "Electrical Services", subtitle: "Safe and reliable", description: "Licensed electricians ready to handle wiring, installations, repairs, and safety inspections for residential properties.", imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-electrical-panel-male-electrician-overalls_169016-67118.jpg", imageAlt: "Electrical service", buttons: [{ text: "Get Free Quote Now", href: "#contact" }],
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
tag: "HVAC", title: "HVAC Solutions", subtitle: "Heating and cooling", description: "Complete HVAC services including maintenance, repairs, and installations to keep your home comfortable year-round.", imageSrc: "http://img.b2bpic.net/free-photo/skilled-electrician-contracted-check-up-outdoor-air-conditioner-starting-work-shift-trained-worker-wearing-protective-gear-preparing-service-faulty-external-hvac-system_482257-63954.jpg", imageAlt: "HVAC service", buttons: [{ text: "Request Service", href: "#contact" }],
|
||||
tag: "HVAC", title: "HVAC Solutions", subtitle: "Heating and cooling", description: "Complete HVAC services including maintenance, repairs, and installations to keep your home comfortable year-round.", imageSrc: "http://img.b2bpic.net/free-photo/skilled-electrician-contracted-check-up-outdoor-air-conditioner-starting-work-shift-trained-worker-wearing-protective-gear-preparing-service-faulty-external-hvac-system_482257-63954.jpg", imageAlt: "HVAC service", buttons: [{ text: "Get Free Quote Now", href: "#contact" }],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user