7 Commits

Author SHA1 Message Date
c65ad8518a Update theme fonts 2026-03-20 15:15:07 +00:00
0ea23c540d Update theme fonts 2026-03-20 15:15:07 +00:00
2f3838a075 Update src/app/page.tsx 2026-03-20 15:09:20 +00:00
7f881aa9f8 Update src/app/assessment/page.tsx 2026-03-20 15:09:19 +00:00
7f9538ca07 Update src/app/page.tsx 2026-03-20 15:08:48 +00:00
ca7881078e Update src/app/assessment/page.tsx 2026-03-20 15:08:47 +00:00
c7d6600b7c Merge version_9 into main
Merge version_9 into main
2026-03-20 14:25:06 +00:00
4 changed files with 10 additions and 29 deletions

View File

@@ -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: "/" }}
/> />

View File

@@ -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

View File

@@ -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"

View File

@@ -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;
} }