3 Commits

Author SHA1 Message Date
0c47da61fd Update src/app/page.tsx 2026-03-07 21:06:08 +00:00
ff9ed1fbd3 Update src/app/layout.tsx 2026-03-07 21:06:07 +00:00
ecc427d99e Merge version_1 into main
Merge version_1 into main
2026-03-07 21:02:54 +00:00
2 changed files with 10 additions and 44 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "M. Escobar Landscaping | DMV Premium Lawn Care & Garden Design", description: "Professional landscaping services in the DMV with 12+ years of excellence. Expert lawn maintenance, garden design, raised beds, and seasonal services. Get your free estimate today.", keywords: "landscaping DMV, lawn care Virginia Maryland DC, landscape design, garden installation, professional landscaper", metadataBase: new URL("https://www.mescobarlandscaping.com"),
alternates: {
canonical: "https://www.mescobarlandscaping.com"},
openGraph: {
title: "M. Escobar Landscaping | Premium Outdoor Design", description: "Transform your outdoor space with expert landscaping services serving the DMV. Over 12 years of trusted, professional craftsmanship.", url: "https://www.mescobarlandscaping.com", siteName: "M. Escobar Landscaping", images: [
{
url: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803948.jpg", alt: "Professional landscaping portfolio"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "M. Escobar Landscaping", description: "Premium landscaping & garden design for DMV homeowners", images: ["http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803948.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "M. Escobar Landscaping | Premium Landscaping Services DMV", description: "Premium landscaping services in the DMV. Over 12 years of trusted, detail-driven work. Free estimates available."};
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={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -98,6 +98,10 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Call Now: (571) 555-0123", href: "tel:+15715550123" },
{ text: "Chat with Us", href: "#contact" },
]}
/>
</div>