9 Commits

Author SHA1 Message Date
4b8cbb6219 Merge version_3 into main
Merge version_3 into main
2026-03-07 15:48:59 +00:00
c870ea2081 Update src/app/page.tsx 2026-03-07 15:48:55 +00:00
a396c2d013 Update src/app/layout.tsx 2026-03-07 15:48:54 +00:00
8c6a64b56f Merge version_2 into main
Merge version_2 into main
2026-03-07 15:42:41 +00:00
61c5c2cf4f Update src/app/page.tsx 2026-03-07 15:42:35 +00:00
955f89013b Merge version_2 into main
Merge version_2 into main
2026-03-07 15:41:08 +00:00
9bf9b2cf92 Update src/app/page.tsx 2026-03-07 15:41:04 +00:00
17243e6b12 Update src/app/layout.tsx 2026-03-07 15:41:03 +00:00
8efa9c600d Merge version_1 into main
Merge version_1 into main
2026-03-07 15:34:43 +00:00
2 changed files with 22 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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 inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Expert Local Services - Professional & Reliable", description: "Trusted local service provider offering home maintenance, cleaning, landscaping, and handyman services. Licensed, insured professionals serving your community with excellence.", keywords: "local services, home repair, maintenance, cleaning, landscaping, handyman, professional, trusted", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Expert Local Services - Professional & Reliable", description: "Trusted local service provider offering comprehensive solutions for your home and business needs.", type: "website", siteName: "Local Pros", images: [
{
url: "http://img.b2bpic.net/free-photo/members-labor-union-working-together_52683-147376.jpg", alt: "professional service team working together outdoor"},
],
},
twitter: {
card: "summary_large_image", title: "Expert Local Services - Professional & Reliable", description: "Trusted local service provider offering comprehensive solutions for your home and business needs.", images: ["http://img.b2bpic.net/free-photo/members-labor-union-working-together_52683-147376.jpg"],
},
};
title: "Local Pros | Expert Local Services", description: "Professional, reliable solutions for your home and business needs. Serving your community with integrity and excellence."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -45,10 +45,10 @@ export default function LandingPage() {
tag="Local Service Leader"
tagIcon={Award}
tagAnimation="slide-up"
background={{ variant: "glowing-orb" }}
imageSrc="http://img.b2bpic.net/free-photo/members-labor-union-working-together_52683-147376.jpg"
imageAlt="Professional service team at work"
mediaAnimation="slide-up"
background={{ variant: "plain" }}
testimonials={[
{
name: "Margaret Chen", handle: "Homeowner", testimonial: "Exceptional service! Prompt, professional, and they treated my home like their own.", rating: 5,
@@ -68,6 +68,21 @@ export default function LandingPage() {
{ text: "Learn More", href: "#services" }
]}
buttonAnimation="slide-up"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/closeup-goodlooking-tender-friendly-pretty-middleaged-30s-woman-extend-arm-hold-camera-hand-smiling-broadly-taking-selfie-photographing-record-videomessage-calling-husband_176420-51274.jpg", alt: "Customer avatar 1"
},
{
src: "http://img.b2bpic.net/free-photo/middle-age-businessman-smiling-happy-standing-city_839833-25759.jpg", alt: "Customer avatar 2"
},
{
src: "http://img.b2bpic.net/free-photo/cheerful-thankful-young-woman-honored-embarrassed_1262-14837.jpg", alt: "Customer avatar 3"
},
{
src: "http://img.b2bpic.net/free-photo/successful-senior-hotel-owner-leaning-counter_1262-5861.jpg", alt: "Customer avatar 4"
}
]}
avatarText="500+ Happy Customers"
useInvertedBackground={false}
/>
</div>