5 Commits

Author SHA1 Message Date
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 38 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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 - Professional Services for Woodbourne-Hyde Park", description: "Expert landscape design, installations, and 24/7 emergency services. Family-owned, locally operated, fully warranted work."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -10,7 +10,7 @@ import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; 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() { export default function LandingPage() {
return ( return (
@@ -49,7 +49,7 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ variant: "plain" }} background={{ variant: "plain" }}
buttons={[ 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" } { text: "Request Free Estimate", href: "#contact" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"