2 Commits

Author SHA1 Message Date
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 { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric'; import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
@@ -42,8 +42,6 @@ export default function LandingPage() {
name: "About", id: "#about"}, name: "About", id: "#about"},
{ {
name: "Reviews", id: "#reviews"}, name: "Reviews", id: "#reviews"},
{
name: "Contact", id: "#contact"},
]} ]}
logoSrc="http://img.b2bpic.net/free-vector/flat-design-lawn-mower-logo_23-2149189098.jpg" logoSrc="http://img.b2bpic.net/free-vector/flat-design-lawn-mower-logo_23-2149189098.jpg"
logoAlt="JR Landscaping LLC Logo" logoAlt="JR Landscaping LLC Logo"
@@ -228,32 +226,6 @@ export default function LandingPage() {
/> />
</div> </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"> <div id="footer" data-section="footer">
<FooterMedia <FooterMedia
@@ -273,8 +245,6 @@ export default function LandingPage() {
label: "About", href: "#about"}, label: "About", href: "#about"},
{ {
label: "Reviews", href: "#reviews"}, label: "Reviews", href: "#reviews"},
{
label: "Contact", href: "#contact"},
], ],
}, },
{ {
@@ -294,4 +264,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }