Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 35e663b6ad | |||
| dbbdc4f230 | |||
| 626b0e9a2b | |||
| a52f13565e | |||
| f89fec7156 |
@@ -1,60 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const mulish = Mulish({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-mulish",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Lawn Tech | Professional Lawn Care in South Jordan, UT",
|
title: "Lawn Tech - Professional Lawn Care in South Jordan, UT", description: "Professional lawn mowing, fertilization, weed control, and maintenance services in South Jordan, Utah."};
|
||||||
description: "Professional lawn mowing, fertilization, weed control, and pest control services in South Jordan, Utah. Free estimates for South Jordan, Sandy, Riverton, and surrounding areas.",
|
|
||||||
keywords: "lawn care south jordan, lawn mowing utah, lawn fertilization, weed control south jordan, lawn service near me",
|
|
||||||
metadataBase: new URL("https://www.lawntech-southjordan.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://www.lawntech-southjordan.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Lawn Tech - Professional Lawn Care South Jordan, UT",
|
|
||||||
description: "Expert lawn mowing, fertilization, and lawn maintenance. Serving South Jordan, Sandy, Riverton. Free estimates available.",
|
|
||||||
url: "https://www.lawntech-southjordan.com",
|
|
||||||
siteName: "Lawn Tech",
|
|
||||||
type: "website",
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Lawn Tech - Lawn Care South Jordan, UT",
|
|
||||||
description: "Professional lawn care services. Call (801) 253-2277 for a free estimate.",
|
|
||||||
},
|
|
||||||
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={`${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1422,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
|
|||||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import { Sparkles, CheckCircle, Leaf, Star, TrendingUp, DollarSign } from "lucide-react";
|
import { Sparkles, CheckCircle, Leaf, Star, TrendingUp, DollarSign, Shield } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -41,8 +41,8 @@ export default function HomePage() {
|
|||||||
<HeroBillboardRotatedCarousel
|
<HeroBillboardRotatedCarousel
|
||||||
title="Professional Lawn Care in South Jordan, UT"
|
title="Professional Lawn Care in South Jordan, UT"
|
||||||
description="Reliable mowing, fertilization, weed control, and lawn maintenance to keep your yard looking its best. Serving South Jordan, Sandy, Riverton, and surrounding areas."
|
description="Reliable mowing, fertilization, weed control, and lawn maintenance to keep your yard looking its best. Serving South Jordan, Sandy, Riverton, and surrounding areas."
|
||||||
tag="Local Service"
|
tag="Licensed & Insured"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Shield}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now: (801) 253-2277", href: "tel:+18012532277" },
|
{ text: "Call Now: (801) 253-2277", href: "tel:+18012532277" },
|
||||||
|
|||||||
Reference in New Issue
Block a user