8 Commits

Author SHA1 Message Date
cd7ba210c6 Update src/app/quote/page.tsx 2026-06-03 18:58:23 +00:00
5257ccccf5 Update src/app/page.tsx 2026-06-03 18:58:22 +00:00
fdeedda640 Update src/app/quote/page.tsx 2026-06-03 18:57:33 +00:00
3583055bc6 Update src/app/page.tsx 2026-06-03 18:57:33 +00:00
783a918947 Merge version_3 into main
Merge version_3 into main
2026-06-03 18:54:51 +00:00
93cbce17e7 Add src/app/quote/page.tsx 2026-06-03 18:54:48 +00:00
681a78dc12 Update src/app/page.tsx 2026-06-03 18:54:48 +00:00
6945060c95 Merge version_2 into main
Merge version_2 into main
2026-06-03 18:50:20 +00:00
2 changed files with 88 additions and 7 deletions

View File

@@ -34,7 +34,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home", id: "#hero"},
name: "Home", id: "/"},
{
name: "About Us", id: "#about"},
{
@@ -44,12 +44,11 @@ export default function LandingPage() {
{
name: "Testimonials", id: "#testimonials"},
{
name: "Contact", id: "#contact"},
name: "Contact", id: "#contact"}
]}
brandName="Green Ground Landscaping LLC"
button={{
text: "Get a Quote", href: "#contact"}}
animateOnLoad={true}
button={{ text: "Get a Quote", href: "/quote" }}
/>
</div>
@@ -91,7 +90,7 @@ export default function LandingPage() {
{
text: "Explore Services", href: "#services"},
{
text: "Get a Free Quote", href: "#contact"},
text: "Get a Free Quote", href: "/quote"},
]}
avatars={[
{
@@ -131,7 +130,7 @@ export default function LandingPage() {
"Serving Gaithersburg, MD, Green Ground Landscaping LLC is dedicated to providing top-notch landscaping solutions. With a passion for perfection and an eye for detail, we transform ordinary yards into extraordinary outdoor living spaces.", "Our team of experienced landscapers is committed to quality, reliability, and customer satisfaction. From lush gardens to elegant patios, we handle every project with professionalism and expertise."]}
buttons={[
{
text: "Get a Free Quote", href: "#contact"},
text: "Get a Free Quote", href: "/quote"},
]}
/>
</div>
@@ -326,4 +325,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

82
src/app/quote/page.tsx Normal file
View File

@@ -0,0 +1,82 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function QuotePage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="largeSizeMediumTitles"
background="grid"
cardStyle="subtle-shadow"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/#about" },
{ name: "Services", id: "/#services" },
{ name: "Packages", id: "/#packages" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Green Ground Landscaping LLC"
animateOnLoad={true}
button={{ text: "Get a Quote", href: "/quote" }}
/>
</div>
<div id="quote-form" data-section="quote-form">
<ContactText
useInvertedBackground={false}
background={{ variant: "radial-gradient" }}
text="Ready for a free quote? Fill out the form below or contact us directly to discuss your landscaping needs. We'll get back to you promptly!"
buttons={[
{ text: "Call Us: (240) 423-2030", href: "tel:+12404232030" },
{ text: "Email Us", href: "mailto:info@greengroundlandscaping.com" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
{ label: "Services", href: "/#services" },
{ label: "Packages", href: "/#packages" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "/#faq" },
{ label: "Contact Us", href: "/#contact" }
]
},
{
title: "Connect", items: [
{ label: "Facebook", href: "#" },
{ label: "Instagram", href: "#" }
]
}
]}
bottomLeftText="© 2024 Green Ground Landscaping LLC. All rights reserved."
bottomRightText="Powered by Webild"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}