Compare commits
12 Commits
version_7
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| c65ad8518a | |||
| 0ea23c540d | |||
| 2f3838a075 | |||
| 7f881aa9f8 | |||
| 7f9538ca07 | |||
| ca7881078e | |||
| c7d6600b7c | |||
| 90d60d706e | |||
| 225326d9fd | |||
| e1b2d7f3bb | |||
| 7222df9aad | |||
| 574993f53b |
@@ -68,10 +68,7 @@ export default function AssessmentPage() {
|
||||
<NavbarStyleCentered
|
||||
brandName="Land Care 4 U"
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Our Work", id: "showcase" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" }
|
||||
{ name: "Our Work", id: "showcase" }
|
||||
]}
|
||||
button={{ text: "Back to Home", href: "/" }}
|
||||
/>
|
||||
|
||||
@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
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.',
|
||||
};
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -27,7 +29,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${interTight.variable} antialiased`}>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -35,9 +35,7 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
brandName="Land Care 4 U"
|
||||
navItems={[
|
||||
{ name: "Our Work", id: "showcase" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" }
|
||||
{ name: "Our Work", id: "showcase" }
|
||||
]}
|
||||
button={{ text: "Get Free Quote", onClick: handleGetAssessment }}
|
||||
/>
|
||||
@@ -48,8 +46,7 @@ export default function LandingPage() {
|
||||
logoText="Land Care 4 U & Landscaping"
|
||||
description="Transform Your Yard Into a Beautiful, Stress-Free Outdoor Space. Reliable. Professional. Affordable landscaping trusted by homeowners who want it done right the first time."
|
||||
buttons={[
|
||||
{ text: "Get Your Free Yard Assessment", onClick: handleGetAssessment },
|
||||
{ text: "View Our Work", href: "#showcase" }
|
||||
{ text: "Get Your Free Yard Assessment", onClick: handleGetAssessment }
|
||||
]}
|
||||
slides={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-modern-house-cement-view-from-garden_1127-3209.jpg?id=1242915", imageAlt: "Yard transformation from overgrown to lush green landscape" },
|
||||
@@ -125,23 +122,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</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">
|
||||
<FeatureCardOne
|
||||
tag="Simple Process"
|
||||
@@ -176,8 +156,7 @@ export default function LandingPage() {
|
||||
logoText="Land Care 4 U & Landscaping"
|
||||
copyrightText="© 2025 Land Care 4 U & Landscaping. All rights reserved."
|
||||
socialLinks={[
|
||||
{ icon: Instagram, href: "https://www.instagram.com/lawncare4ulandscaping", ariaLabel: "Instagram" },
|
||||
{ icon: Phone, href: "tel:+19515484002", ariaLabel: "Call us" }
|
||||
{ icon: Instagram, href: "https://www.instagram.com/lawncare4ulandscaping", ariaLabel: "Follow us on Instagram @lawncare4ulandscaping" }
|
||||
]}
|
||||
ariaLabel="Site footer"
|
||||
/>
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user