Merge version_4 into main #9

Merged
bender merged 2 commits from version_4 into main 2026-03-09 16:13:58 +00:00
2 changed files with 20 additions and 14 deletions

View File

@@ -1,14 +1,14 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Garcia's Project - Landscape & Hardscape Construction", description: "Professional landscaping and hardscape construction services in Chicago suburbs"};
title: "Garcia's Project - Landscape & Hardscape Construction", description: "Professional landscaping and hardscape construction services in Addison, IL and surrounding areas."};
export default function RootLayout({
children,
@@ -17,11 +17,19 @@ export default function RootLayout({
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${manrope.variable} antialiased`}>
{children}
<body className={inter.variable}>
<ServiceWrapper>
{children}
</ServiceWrapper>
<script
async
src="https://cdn.jsdelivr.net/npm/three@r128/build/three.min.js"
dangerouslySetInnerHTML={{
__html: `
if (!window.localStorage.getItem('theme')) {
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
window.localStorage.setItem('theme', prefersDark ? 'dark' : 'light');
}
`,
}}
/>
<script

View File

@@ -47,8 +47,7 @@ export default function LandingPage() {
tag="Quality Outdoor Living"
tagAnimation="slide-up"
buttons={[
{ text: "Call Now", href: "tel:2242396133" },
{ text: "Get Free Estimate", href: "#contact" }
{ text: "Call Now", href: "tel:2242396133" }
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
@@ -243,8 +242,7 @@ export default function LandingPage() {
title="Get Your Free Landscaping & Hardscape Estimate Today"
description="Contact Garcia's Project Landscape & Hardscape Construction for a no-obligation consultation. We're ready to help you create the outdoor space of your dreams."
buttons={[
{ text: "Call (224) 239-6133", href: "tel:2242396133" },
{ text: "Get Free Estimate", href: "tel:2242396133" }
{ text: "Call (224) 239-6133", href: "tel:2242396133" }
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}