Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a75dd9852 | |||
| 6c545f0ec4 | |||
| 8f1cfac169 | |||
| accab788a4 | |||
| 85189a2fc0 | |||
| 0eb1a1af53 |
@@ -1,14 +1,13 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Manrope } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./styles/variables.css";
|
import "./globals.css";
|
||||||
import "./styles/base.css";
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
const inter = Inter({
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -17,11 +16,17 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body className={`${manrope.variable} antialiased`}>
|
<body className={inter.variable}>
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
async
|
dangerouslySetInnerHTML={{
|
||||||
src="https://cdn.jsdelivr.net/npm/three@r128/build/three.min.js"
|
__html: `
|
||||||
|
if (!window.localStorage.getItem('theme')) {
|
||||||
|
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
||||||
|
window.localStorage.setItem('theme', prefersDark ? 'dark' : 'light');
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -47,8 +47,7 @@ export default function LandingPage() {
|
|||||||
tag="Quality Outdoor Living"
|
tag="Quality Outdoor Living"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now", href: "tel:2242396133" },
|
{ text: "Call Now", href: "tel:2242396133" }
|
||||||
{ text: "Get Free Estimate", href: "#contact" }
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
@@ -243,8 +242,7 @@ export default function LandingPage() {
|
|||||||
title="Get Your Free Landscaping & Hardscape Estimate Today"
|
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."
|
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={[
|
buttons={[
|
||||||
{ text: "Call (224) 239-6133", href: "tel:2242396133" },
|
{ text: "Call (224) 239-6133", href: "tel:2242396133" }
|
||||||
{ text: "Get Free Estimate", href: "tel:2242396133" }
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user