Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0facb864f7 | |||
| c13efd91a1 | |||
| 661b022f6b | |||
| 25d06b016d | |||
| e7ca3d28ce | |||
| 8b4abc8813 | |||
| ea406a58b4 | |||
| ece0055e1f |
@@ -1,56 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
const halant = Halant({
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ['latin'] });
|
||||
|
||||
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"),
|
||||
openGraph: {
|
||||
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,
|
||||
},
|
||||
title: 'Ortiz Landscaping - Professional Outdoor Services',
|
||||
description: 'Transform your outdoor space with expert landscaping services including lawn mowing, mulch installation, and seasonal cleanups.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1418,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -41,8 +41,8 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
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."
|
||||
title="Beautiful, Well-Maintained Yards Boost Curb Appeal and Property Value"
|
||||
description="Transform your outdoor space into a stunning showcase. Ortiz Landscaping specializes in expert mulching, precision edging, seasonal cleanups, and weekly lawn maintenance to enhance your property's curb appeal and increase its market value."
|
||||
tag="Trusted Local Service"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
@@ -54,7 +54,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "plain" }}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/man-cutting-grass-with-lawn-mover-back-yard-male-shirt_1157-41448.jpg", imageAlt: "Beautiful landscaped garden"
|
||||
id: "1", imageSrc: "https://images.unsplash.com/photo-1518895949257-7621c3c786d7?w=800&q=80", imageAlt: "Professional landscaper wearing sunglasses and sombrero"
|
||||
},
|
||||
{
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-material-pieces-wooden-boxes_181624-18062.jpg?_wi=1", imageAlt: "Professional mulch installation"
|
||||
|
||||
Reference in New Issue
Block a user