Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 794ee9c6df | |||
| 25276fa28d | |||
| 8de41a6611 | |||
| cd7e46526b | |||
| 30a6b7201f | |||
| 0f2f7f0002 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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