Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a75dd9852 | |||
| 6c545f0ec4 | |||
| 8f1cfac169 | |||
| accab788a4 | |||
| 85189a2fc0 | |||
| 0eb1a1af53 |
@@ -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
|
||||
|
||||
@@ -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" }}
|
||||
|
||||
Reference in New Issue
Block a user