4 Commits

Author SHA1 Message Date
37cff62502 Update src/app/page.tsx 2026-06-03 18:59:12 +00:00
c97da45c5d Merge version_2 into main
Merge version_2 into main
2026-06-03 18:57:03 +00:00
7c4b071084 Update src/app/page.tsx 2026-06-03 18:56:57 +00:00
4a90c8e3d0 Merge version_1 into main
Merge version_1 into main
2026-06-03 18:53:28 +00:00

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterMedia from '@/components/sections/footer/FooterMedia';
@@ -43,7 +43,11 @@ export default function LandingPage() {
{
name: "Reviews", id: "#reviews"},
{
name: "Contact", id: "#contact"},
name: "Process", id: "#process"},
{
name: "Service Area", id: "#service-area"},
{
name: "Contact", id: "#footer"}
]}
logoSrc="http://img.b2bpic.net/free-vector/flat-design-lawn-mower-logo_23-2149189098.jpg"
logoAlt="JR Landscaping LLC Logo"
@@ -228,32 +232,6 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={true}
title="Ready to Improve Your Property?"
description="JR Landscaping LLC\n📞 (214) 480-2086\n📍 408 N 2nd St, Crandall, TX 75114\nOpen MondaySaturday"
inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email", type: "email", placeholder: "Your Email", required: true,
},
{
name: "phone", type: "tel", placeholder: "Phone Number (Optional)"},
]}
textarea={{
name: "message", placeholder: "Tell us about your project...", rows: 4,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/living-room-without-electric-light-inside-modern-house-blackout_123827-35881.jpg"
imageAlt="Beautiful landscaped backyard with evening lighting"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Get a Free Quote"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
@@ -273,8 +251,6 @@ export default function LandingPage() {
label: "About", href: "#about"},
{
label: "Reviews", href: "#reviews"},
{
label: "Contact", href: "#contact"},
],
},
{
@@ -294,4 +270,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}