Merge version_3 into main #3
@@ -1,13 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Local Pro Services - Trusted Home Service Experts", description: "Fast, reliable home service from licensed professionals. 24/7 emergency service available."};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -16,7 +20,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={raleway.variable}>{children}
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -10,7 +10,7 @@ import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import { Phone, Wrench, MapPin, Star, HelpCircle, Shield } from 'lucide-react';
|
||||
import { Phone, Wrench, MapPin, Star, HelpCircle } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -46,8 +46,8 @@ export default function LandingPage() {
|
||||
title="Trusted Local Service Experts in Your Area"
|
||||
description="Fast, reliable service from licensed professionals. Available 24/7 for your emergency needs. Call now for same-day service."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Licensed & Insured"
|
||||
tagIcon={Shield}
|
||||
tag="Available 24/7"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:1-800-LOCAL-PRO" },
|
||||
@@ -93,16 +93,25 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "plumbing", label: "Plumbing", title: "24/7 Plumbing Solutions", items: [
|
||||
"Emergency leak repair", "Drain cleaning & unclogging", "Water heater replacement", "Fixture installation", "Preventive maintenance"
|
||||
],
|
||||
buttons: [
|
||||
{ text: "Schedule Plumbing Service", href: "#contact-cta" }
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "electrical", label: "Electrical", title: "Licensed Electrical Services", items: [
|
||||
"Circuit breaker repair", "Outlet & switch installation", "Electrical safety inspections", "Panel upgrades", "Emergency power restoration"
|
||||
],
|
||||
buttons: [
|
||||
{ text: "Get Electrical Quote", href: "#contact-cta" }
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "hvac", label: "HVAC", title: "Heating & Cooling Experts", items: [
|
||||
"AC repair & maintenance", "Furnace service & replacement", "Thermostat installation", "Air quality solutions", "Seasonal tune-ups"
|
||||
],
|
||||
buttons: [
|
||||
{ text: "Schedule HVAC Service", href: "#contact-cta" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user