Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 25d06b016d | |||
| e7ca3d28ce | |||
| 8b4abc8813 | |||
| ea406a58b4 | |||
| ece0055e1f |
@@ -1,56 +1,22 @@
|
|||||||
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 './globals.css';
|
||||||
import { Roboto } from "next/font/google";
|
|
||||||
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 roboto = Roboto({
|
|
||||||
variable: "--font-roboto", subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "500", "700", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Ortiz Landscaping - Professional Lawn & Yard Care", description: "Expert landscaping services including mulch installation, edging, spring/fall cleanup, and weekly lawn mowing. Trusted local service from Filiberto Ortiz. Get your free quote today.", keywords: "landscaping, lawn mowing, mulch, edging, yard maintenance, spring cleanup, fall cleanup, professional landscaper", metadataBase: new URL("https://ortizlandscaping.com"),
|
title: 'Ortiz Landscaping - Professional Outdoor Services',
|
||||||
openGraph: {
|
description: 'Transform your outdoor space with expert landscaping services including lawn mowing, mulch installation, and seasonal cleanups.',
|
||||||
title: "Ortiz Landscaping - Professional Yard & Lawn Care", description: "Transform your outdoor space with professional landscaping services. Weekly mowing from $40, mulch, edging, seasonal cleanup.", url: "https://ortizlandscaping.com", siteName: "Ortiz Landscaping", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/man-cutting-grass-with-lawn-mover-back-yard-male-shirt_1157-41448.jpg", alt: "Professional landscaping service by Ortiz Landscaping"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Ortiz Landscaping - Professional Services", description: "Expert lawn care and landscaping. $40 weekly mowing. Call today for your free quote.", images: ["http://img.b2bpic.net/free-photo/man-cutting-grass-with-lawn-mover-back-yard-male-shirt_1157-41448.jpg"],
|
|
||||||
},
|
|
||||||
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} ${roboto.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1418,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardRotatedCarousel
|
<HeroBillboardRotatedCarousel
|
||||||
title="Professional Landscaping Services"
|
title="Professional Landscaping Services"
|
||||||
description="Transform your outdoor space with Ortiz Landscaping. From expert mulching and precision edging to seasonal cleanups and weekly lawn maintenance, we deliver quality and reliability every time."
|
description="Beautiful, well-maintained yards boost curb appeal and property value. Ortiz Landscaping delivers expert mulching, precision edging, seasonal cleanups, and weekly lawn maintenance to keep your outdoor space looking pristine."
|
||||||
tag="Trusted Local Service"
|
tag="Trusted Local Service"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user