Compare commits
7 Commits
version_9
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| c65ad8518a | |||
| 0ea23c540d | |||
| 2f3838a075 | |||
| 7f881aa9f8 | |||
| 7f9538ca07 | |||
| ca7881078e | |||
| c7d6600b7c |
@@ -68,9 +68,7 @@ export default function AssessmentPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Land Care 4 U"
|
brandName="Land Care 4 U"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Our Work", id: "showcase" },
|
{ name: "Our Work", id: "showcase" }
|
||||||
{ name: "About", id: "about" },
|
|
||||||
{ name: "Reviews", id: "testimonials" }
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Back to Home", href: "/" }}
|
button={{ text: "Back to Home", href: "/" }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Inter_Tight } from "next/font/google";
|
import { Inter_Tight } from "next/font/google";
|
||||||
|
import { Mulish } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -14,9 +15,10 @@ export const metadata: Metadata = {
|
|||||||
description: 'Transform your yard into a beautiful outdoor space. Reliable, affordable landscaping trusted by homeowners. Get a free quote today from local experts.',
|
description: 'Transform your yard into a beautiful outdoor space. Reliable, affordable landscaping trusted by homeowners. Get a free quote today from local experts.',
|
||||||
};
|
};
|
||||||
|
|
||||||
const interTight = Inter_Tight({
|
|
||||||
variable: "--font-inter-tight", subsets: ["latin"],
|
const mulish = Mulish({
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
variable: "--font-mulish",
|
||||||
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -27,7 +29,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${interTight.variable} antialiased`}>
|
<body className={`${mulish.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -35,9 +35,7 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Land Care 4 U"
|
brandName="Land Care 4 U"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Our Work", id: "showcase" },
|
{ name: "Our Work", id: "showcase" }
|
||||||
{ name: "About", id: "about" },
|
|
||||||
{ name: "Reviews", id: "testimonials" }
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Get Free Quote", onClick: handleGetAssessment }}
|
button={{ text: "Get Free Quote", onClick: handleGetAssessment }}
|
||||||
/>
|
/>
|
||||||
@@ -124,23 +122,6 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
|
||||||
<TestimonialAboutCard
|
|
||||||
tag="Our Story"
|
|
||||||
tagIcon={Heart}
|
|
||||||
tagAnimation="slide-up"
|
|
||||||
title="Meet the Team Behind the Work"
|
|
||||||
description="Led by Juan and his dedicated team, Land Care 4 U & Landscaping is built on hard work, honesty, and real care for every home we touch."
|
|
||||||
subdescription="We don't just show up—we listen, explain, and deliver results that last. Every project is treated with the same pride and attention to detail, regardless of size."
|
|
||||||
icon={Users}
|
|
||||||
imageSrc="http://img.b2bpic.net/premium-photo/landscaper-cut-natural-grass-turfs-size_1426-4787.jpg?id=49630866"
|
|
||||||
imageAlt="Land Care 4 U team"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
ariaLabel="About our team section"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="process" data-section="process">
|
<div id="process" data-section="process">
|
||||||
<FeatureCardOne
|
<FeatureCardOne
|
||||||
tag="Simple Process"
|
tag="Simple Process"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-mulish), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-mulish), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user