5 Commits

Author SHA1 Message Date
ab51803a6d Merge version_4 into main
Merge version_4 into main
2026-04-21 16:58:53 +00:00
18cd324d9e Update src/app/page.tsx 2026-04-21 16:58:50 +00:00
059ea00128 Merge version_4 into main
Merge version_4 into main
2026-04-21 16:58:24 +00:00
32ba06d376 Update src/app/page.tsx 2026-04-21 16:58:21 +00:00
4f496c5c44 Merge version_3 into main
Merge version_3 into main
2026-04-21 16:56:18 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
@@ -95,7 +95,7 @@ export default function LandingPage() {
{
id: "s2", title: "Hardscape Construction", author: "Stone Specialists", description: "Custom patios, walkways, and retaining walls built with premium materials for long-lasting beauty.", tags: [
"Hardscape"],
imageSrc: "http://img.b2bpic.net/free-photo/tranquil-space-with-plants_1137-266.jpg", imageAlt: "hardscape patio design"},
imageSrc: "http://img.b2bpic.net/free-photo/tranquil-space-with-plants_1137-266.jpg?_wi=1", imageAlt: "hardscape patio design"},
{
id: "s3", title: "Garden Lighting Design", author: "Design Engineers", description: "Ambient, automated exterior lighting systems to illuminate your home and garden architecture.", tags: [
"Lighting"],
@@ -203,54 +203,39 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "plain"}}
tag="Schedule Your Consultation"
title="Transform Your Outdoor Space"
description="Ready to build your dream garden? Contact our experts today to book a free assessment and estimate for your property."
buttons={[
{
text: "Book an Estimate", href: "mailto:hello@hiddengem.com"},
<ContactSplitForm
title="Lets Work Together"
description="Have a vision for your garden? Share your project details with our team and let us build it."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }
]}
textarea={{ name: "message", placeholder: "Tell us about your landscape goals...", rows: 4 }}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/tranquil-space-with-plants_1137-266.jpg?_wi=2"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterBaseCard
logoText="Hidden Gem"
columns={[
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Our Process", href: "#about"},
{
label: "Portfolio", href: "#portfolio"},
],
},
{
title: "Services", items: [
{
label: "Lawn Maintenance", href: "#services"},
{
label: "Hardscape Design", href: "#services"},
{
label: "Garden Lighting", href: "#services"},
{ label: "Lawn Care", href: "#services" },
{ label: "Hardscaping", href: "#services" },
{ label: "Lighting Design", href: "#services" },
],
},
{
title: "Contact", items: [
{
label: "hello@hiddengem.com", href: "mailto:hello@hiddengem.com"},
{
label: "(555) 123-4567", href: "tel:5551234567"},
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Process", href: "#about" },
{ label: "Portfolio", href: "#portfolio" },
],
},
]}
bottomLeftText="© 2024 Hidden Gem Landscaping Inc. All rights reserved."
bottomRightText="Building greener futures."
copyrightText="© 2025 Hidden Gem Landscaping Inc. All rights reserved."
/>
</div>
</ReactLenis>