Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-10 03:05:31 +00:00
2 changed files with 11 additions and 35 deletions

View File

@@ -1,45 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import { Raleway } 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 figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Trusted Local Service Experts | Emergency 24/7 Available", description: "Licensed, insured local service professionals available 24/7. Fast response, fair pricing, 100% satisfaction guarantee. Call now for same-day service.", keywords: "local service, emergency service, plumbing, electrical, HVAC, professional service, licensed contractor", openGraph: {
title: "Trusted Local Service Experts", description: "Professional home services available 24/7. Fast, reliable, and affordable.", siteName: "Local Pro Services", type: "website"},
twitter: {
card: "summary", title: "Trusted Local Service Experts | 24/7 Available", description: "Licensed professionals. Emergency service. Call now."},
};
title: "Local Pro Services - Trusted Home Service Experts", description: "Fast, reliable home service from licensed professionals. 24/7 emergency service available."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={raleway.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -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 } from 'lucide-react';
import { Phone, Wrench, MapPin, Star, HelpCircle, Shield } 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="Available 24/7"
tagIcon={Phone}
tag="Licensed & Insured"
tagIcon={Shield}
tagAnimation="slide-up"
buttons={[
{ text: "Call Now", href: "tel:1-800-LOCAL-PRO" },