8 Commits

Author SHA1 Message Date
3916c2d600 Merge version_3 into main
Merge version_3 into main
2026-03-04 00:15:22 +00:00
0c6f26f319 Update src/app/layout.tsx 2026-03-04 00:15:18 +00:00
9df9d733f4 Merge version_2 into main
Merge version_2 into main
2026-03-04 00:08:03 +00:00
c6411300c8 Update src/app/page.tsx 2026-03-04 00:07:58 +00:00
2310d8ff8e Update src/app/layout.tsx 2026-03-04 00:07:58 +00:00
dd5f4c7f73 Merge version_1 into main
Merge version_1 into main
2026-03-04 00:04:18 +00:00
2fc03ae033 Merge version_1 into main
Merge version_1 into main
2026-03-04 00:03:12 +00:00
d2d1ec8ceb Merge version_1 into main
Merge version_1 into main
2026-03-04 00:01:40 +00:00
2 changed files with 8 additions and 37 deletions

View File

@@ -1,49 +1,21 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Professional Landscaping in Woodbourne-Hyde Park | 24/7 Services", description: "Expert landscape design, installations, and 24/7 emergency services in Woodbourne-Hyde Park. Family-owned, 20+ years experience. Free estimates, full warranty.", keywords: "landscaping Woodbourne-Hyde Park, landscape design, emergency landscaping, local landscapers, outdoor water features, landscape installation", openGraph: {
title: "Pro Landscaping | Woodbourne-Hyde Park's Trusted Landscaper", description: "Professional landscaping services for 20+ years. Design, installation, and 24/7 emergency response.", siteName: "Pro Landscaping", type: "website"},
twitter: {
card: "summary_large_image", title: "Pro Landscaping | Trusted Landscaper in Woodbourne-Hyde Park", description: "Expert landscape design and emergency services. 20+ years experience. Call (937) 240-6570"},
robots: {
index: true,
follow: true,
},
title: "Pro Landscaping - Professional Services for Woodbourne-Hyde Park", description: "Expert landscape design, installations, and 24/7 emergency services. Family-owned, locally operated, fully warranted work."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Sparkles, Shield, Leaf } from 'lucide-react';
import { Sparkles, Shield, Leaf, Phone } from 'lucide-react';
export default function LandingPage() {
return (
@@ -49,7 +49,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "plain" }}
buttons={[
{ text: "Call Now: (937) 240-6570", href: "tel:(937)240-6570" },
{ text: "Call Now", href: "tel:(937)240-6570" },
{ text: "Request Free Estimate", href: "#contact" }
]}
buttonAnimation="slide-up"