7 Commits

Author SHA1 Message Date
bb2f92fb47 Merge version_3 into main
Merge version_3 into main
2026-03-10 03:06:49 +00:00
794ee9c6df Update src/app/page.tsx 2026-03-10 03:06:46 +00:00
25276fa28d Update src/app/layout.tsx 2026-03-10 03:06:45 +00:00
8de41a6611 Merge version_2 into main
Merge version_2 into main
2026-03-10 03:05:31 +00:00
cd7e46526b Update src/app/page.tsx 2026-03-10 03:05:27 +00:00
30a6b7201f Update src/app/layout.tsx 2026-03-10 03:05:27 +00:00
0f2f7f0002 Merge version_1 into main
Merge version_1 into main
2026-03-10 03:03:55 +00:00
2 changed files with 21 additions and 30 deletions

View File

@@ -1,45 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", 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: "Create Next App", description: "Generated by create next app"};
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={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -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" }
]
}
]}