6 Commits

Author SHA1 Message Date
9a75dd9852 Update src/app/layout.tsx 2026-03-09 16:15:09 +00:00
6c545f0ec4 Update src/app/page.tsx 2026-03-09 16:13:53 +00:00
8f1cfac169 Update src/app/layout.tsx 2026-03-09 16:13:53 +00:00
accab788a4 Merge version_3 into main
Merge version_3 into main
2026-03-09 16:08:11 +00:00
85189a2fc0 Merge version_3 into main
Merge version_3 into main
2026-03-09 16:06:43 +00:00
0eb1a1af53 Merge version_3 into main
Merge version_3 into main
2026-03-09 16:05:12 +00:00
2 changed files with 16 additions and 13 deletions

View File

@@ -1,14 +1,13 @@
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";
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 +16,17 @@ export default function RootLayout({
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${manrope.variable} antialiased`}>
<body className={inter.variable}>
{children}
<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" }}