Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4b8cbb6219 | |||
| c870ea2081 | |||
| a396c2d013 | |||
| 8c6a64b56f | |||
| 61c5c2cf4f | |||
| 955f89013b | |||
| 9bf9b2cf92 | |||
| 17243e6b12 | |||
| 8efa9c600d |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user