Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
359
src/app/page.tsx
359
src/app/page.tsx
@@ -12,7 +12,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import { Award, Droplets, Heart, Leaf, Square, Tool } from "lucide-react";
|
||||
import { Award, Droplets, Heart, Leaf, Square, Wrench } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,123 +32,44 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
{
|
||||
name: "Projects",
|
||||
id: "#projects",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Projects", id: "#projects" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="AR Landscape Design"
|
||||
button={{
|
||||
text: "Get a Quote",
|
||||
href: "#contact",
|
||||
}}
|
||||
button={{ text: "Get a Quote", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Transform Your Outdoors into a Masterpiece."
|
||||
description="AR Landscape Design creates sustainable, elegant, and functional outdoor living spaces tailored to your lifestyle."
|
||||
testimonials={[
|
||||
{
|
||||
name: "John Doe",
|
||||
handle: "@johndoe",
|
||||
testimonial: "Exceptional work on our garden redesign. Truly professional.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-outdoors-portrait-young-attractive-bearded-caucasian-male-gardener-blue-t-shirt-smiling-camera-planting-seeds-garden-watering-plants_176420-19925.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sarah Smith",
|
||||
handle: "@sarahsmith",
|
||||
testimonial: "The best landscaping service in town. Highly recommended.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/surprised-green-eyed-lady-looks-plant-amazement-portrait-cute-long-haired-european-model-who-loves-botany_197531-12278.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mike Johnson",
|
||||
handle: "@mikej",
|
||||
testimonial: "Great vision and execution. Our backyard is stunning now.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-cute-clothes-reaching-plants-greenhouse_197531-12331.jpg",
|
||||
},
|
||||
{
|
||||
name: "Anna Lee",
|
||||
handle: "@annalee",
|
||||
testimonial: "They transformed our property completely.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-caucasian-brunette-woman-wear-white-sweater-with-crossed-arms-looks-away-city-indoors_197531-33292.jpg",
|
||||
},
|
||||
{
|
||||
name: "Robert B.",
|
||||
handle: "@robertb",
|
||||
testimonial: "An incredible transformation for our family home.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-inspired-female-florist-standing-greenhouse-holding-potted-plant-looking-purple-flowers-smiling-professional-portrait-copy-space-gardening-job-botany-concept_74855-12858.jpg",
|
||||
},
|
||||
{ name: "John Doe", handle: "@johndoe", testimonial: "Exceptional work on our garden redesign. Truly professional.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-outdoors-portrait-young-attractive-bearded-caucasian-male-gardener-blue-t-shirt-smiling-camera-planting-seeds-garden-watering-plants_176420-19925.jpg" },
|
||||
{ name: "Sarah Smith", handle: "@sarahsmith", testimonial: "The best landscaping service in town. Highly recommended.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/surprised-green-eyed-lady-looks-plant-amazement-portrait-cute-long-haired-european-model-who-loves-botany_197531-12278.jpg" },
|
||||
{ name: "Mike Johnson", handle: "@mikej", testimonial: "Great vision and execution. Our backyard is stunning now.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-cute-clothes-reaching-plants-greenhouse_197531-12331.jpg" },
|
||||
{ name: "Anna Lee", handle: "@annalee", testimonial: "They transformed our property completely.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-caucasian-brunette-woman-wear-white-sweater-with-crossed-arms-looks-away-city-indoors_197531-33292.jpg" },
|
||||
{ name: "Robert B.", handle: "@robertb", testimonial: "An incredible transformation for our family home.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-inspired-female-florist-standing-greenhouse-holding-potted-plant-looking-purple-flowers-smiling-professional-portrait-copy-space-gardening-job-botany-concept_74855-12858.jpg" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/city-view_1417-1895.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/city-view_1417-1895.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-with-beautiful-blond-hair-gentle-smile-dressed-green-robe-with-belt-is-working-greenhouse_197531-12317.jpg",
|
||||
alt: "Client portrait 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-outdoors-portrait-beautiful-cheerful-bearded-caucasian-farmer-blue-shirt-gloves-smiling-working-with-garden-tools-his-farm-near-countryside-house_176420-19905.jpg",
|
||||
alt: "Client portrait 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-handsome-cheerful-gardener-smiling-posing-plants-flowers_176420-3826.jpg",
|
||||
alt: "Client portrait 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/women-working-greenhouse-with-flowerpots_1157-30889.jpg",
|
||||
alt: "Client portrait 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-man-selling-crops-from-his-garden_329181-16538.jpg",
|
||||
alt: "Client portrait 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-woman-with-beautiful-blond-hair-gentle-smile-dressed-green-robe-with-belt-is-working-greenhouse_197531-12317.jpg", alt: "Client portrait 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-outdoors-portrait-beautiful-cheerful-bearded-caucasian-farmer-blue-shirt-gloves-smiling-working-with-garden-tools-his-farm-near-countryside-house_176420-19905.jpg", alt: "Client portrait 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-handsome-cheerful-gardener-smiling-posing-plants-flowers_176420-3826.jpg", alt: "Client portrait 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/women-working-greenhouse-with-flowerpots_1157-30889.jpg", alt: "Client portrait 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-man-selling-crops-from-his-garden_329181-16538.jpg", alt: "Client portrait 5" }
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Sustainable Design",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Professional Installation",
|
||||
icon: Tool,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Luxury Landscaping",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Smart Irrigation",
|
||||
icon: Droplets,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Artisanal Hardscaping",
|
||||
},
|
||||
{ type: "text", text: "Sustainable Design" },
|
||||
{ type: "text-icon", text: "Professional Installation", icon: Wrench },
|
||||
{ type: "text", text: "Luxury Landscaping" },
|
||||
{ type: "text-icon", text: "Smart Irrigation", icon: Droplets },
|
||||
{ type: "text", text: "Artisanal Hardscaping" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -159,20 +80,11 @@ export default function LandingPage() {
|
||||
title="Crafting Nature Since 2010"
|
||||
description="With over a decade of excellence in landscape architecture, we combine artistic vision with structural integrity to deliver dream environments for our clients."
|
||||
metrics={[
|
||||
{
|
||||
value: "500+",
|
||||
title: "Projects Completed",
|
||||
},
|
||||
{
|
||||
value: "15+",
|
||||
title: "Industry Awards",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
title: "Client Satisfaction",
|
||||
},
|
||||
{ value: "500+", title: "Projects Completed" },
|
||||
{ value: "15+", title: "Industry Awards" },
|
||||
{ value: "100%", title: "Client Satisfaction" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-using-tablet-eco-friendly-wind-power-project-layout_23-2148847803.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-using-tablet-eco-friendly-wind-power-project-layout_23-2148847803.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -184,30 +96,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Modern Garden Design",
|
||||
description: "Tailored landscape designs reflecting your personal style.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Leaf,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/covered-lifestyle-garden-with-indoor-outdoor-living_1127-3425.jpg",
|
||||
imageAlt: "modern garden patio design",
|
||||
},
|
||||
{
|
||||
title: "Advanced Water Management",
|
||||
description: "Efficient irrigation and drainage solutions.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Droplets,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/city-view_1417-1895.jpg?_wi=2",
|
||||
imageAlt: "modern garden patio design",
|
||||
},
|
||||
{
|
||||
title: "Sustainable Hardscaping",
|
||||
description: "Patios, paths, and walls built for longevity.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Square,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-using-tablet-eco-friendly-wind-power-project-layout_23-2148847803.jpg?_wi=2",
|
||||
imageAlt: "modern garden patio design",
|
||||
},
|
||||
{ title: "Modern Garden Design", description: "Tailored landscape designs reflecting your personal style.", bentoComponent: "reveal-icon", icon: Leaf },
|
||||
{ title: "Advanced Water Management", description: "Efficient irrigation and drainage solutions.", bentoComponent: "reveal-icon", icon: Droplets },
|
||||
{ title: "Sustainable Hardscaping", description: "Patios, paths, and walls built for longevity.", bentoComponent: "reveal-icon", icon: Square }
|
||||
]}
|
||||
title="Our Specialized Landscape Services"
|
||||
description="Comprehensive design and construction services to bring your landscape to life."
|
||||
@@ -221,60 +112,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Design",
|
||||
name: "Garden Path Construction",
|
||||
price: "Custom Pricing",
|
||||
rating: 5,
|
||||
reviewCount: "12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-travel-stone-garden-gardening_1203-5249.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Construction",
|
||||
name: "Retaining Wall Installation",
|
||||
price: "Custom Pricing",
|
||||
rating: 5,
|
||||
reviewCount: "15",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Feature",
|
||||
name: "Swimming Pool Integration",
|
||||
price: "Custom Pricing",
|
||||
rating: 5,
|
||||
reviewCount: "8",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-tree_1339-4853.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Hardscape",
|
||||
name: "Custom Fire Pit Design",
|
||||
price: "Custom Pricing",
|
||||
rating: 5,
|
||||
reviewCount: "20",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-trees-thai-style-decoration_1258-111445.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Construction",
|
||||
name: "Wooden Decking Solutions",
|
||||
price: "Custom Pricing",
|
||||
rating: 5,
|
||||
reviewCount: "11",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slim-elegant-girl-with-old-fashioned-outfit-resting-park-amazing-nature_197531-4364.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Water Feature",
|
||||
name: "Rock Pond Design",
|
||||
price: "Custom Pricing",
|
||||
rating: 5,
|
||||
reviewCount: "9",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-village-museum-bucharest-romania_1268-21637.jpg",
|
||||
},
|
||||
{ id: "p1", brand: "Design", name: "Garden Path Construction", price: "Custom Pricing", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-travel-stone-garden-gardening_1203-5249.jpg" },
|
||||
{ id: "p2", brand: "Construction", name: "Retaining Wall Installation", price: "Custom Pricing", rating: 5, reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg" },
|
||||
{ id: "p3", brand: "Feature", name: "Swimming Pool Integration", price: "Custom Pricing", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-tree_1339-4853.jpg" },
|
||||
{ id: "p4", brand: "Hardscape", name: "Custom Fire Pit Design", price: "Custom Pricing", rating: 5, reviewCount: "20", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool-with-palm-trees-thai-style-decoration_1258-111445.jpg" },
|
||||
{ id: "p5", brand: "Construction", name: "Wooden Decking Solutions", price: "Custom Pricing", rating: 5, reviewCount: "11", imageSrc: "http://img.b2bpic.net/free-photo/slim-elegant-girl-with-old-fashioned-outfit-resting-park-amazing-nature_197531-4364.jpg" },
|
||||
{ id: "p6", brand: "Water Feature", name: "Rock Pond Design", price: "Custom Pricing", rating: 5, reviewCount: "9", imageSrc: "http://img.b2bpic.net/free-photo/view-village-museum-bucharest-romania_1268-21637.jpg" }
|
||||
]}
|
||||
title="Our Expertise"
|
||||
description="Discover our signature services designed for premium outdoor living."
|
||||
@@ -287,41 +130,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Robert B.",
|
||||
role: "Homeowner",
|
||||
testimonial: "Excellent service and design sense.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-attractive-bearded-caucasian-male-gardener-blue-t-shirt-gloves-smiling-holding-flower-pot-with-green-sprout-hands-looking-aside-with-excited-face-expression_176420-19922.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Sarah M.",
|
||||
role: "Architect",
|
||||
testimonial: "Very professional and detailed oriented.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-giving-potted-plant-her-client-greenhouse_23-2147948333.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Kevin L.",
|
||||
role: "Developer",
|
||||
testimonial: "Highly satisfied with the final result.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-beautiful-blond-hair-gentle-smile-dressed-green-robe-with-belt-is-working-greenhouse_197531-12315.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Linda P.",
|
||||
role: "Homeowner",
|
||||
testimonial: "Beautiful work, delivered on time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-girl-sitting-cafe_176420-5937.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "David W.",
|
||||
role: "Homeowner",
|
||||
testimonial: "A complete transformation of our yard.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cute-green-eyed-woman-with-smile-poses-greenhouse-holds-plant_197531-12372.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Robert B.", role: "Homeowner", testimonial: "Excellent service and design sense.", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-attractive-bearded-caucasian-male-gardener-blue-t-shirt-gloves-smiling-holding-flower-pot-with-green-sprout-hands-looking-aside-with-excited-face-expression_176420-19922.jpg" },
|
||||
{ id: "t2", name: "Sarah M.", role: "Architect", testimonial: "Very professional and detailed oriented.", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-giving-potted-plant-her-client-greenhouse_23-2147948333.jpg" },
|
||||
{ id: "t3", name: "Kevin L.", role: "Developer", testimonial: "Highly satisfied with the final result.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-beautiful-blond-hair-gentle-smile-dressed-green-robe-with-belt-is-working-greenhouse_197531-12315.jpg" },
|
||||
{ id: "t4", name: "Linda P.", role: "Homeowner", testimonial: "Beautiful work, delivered on time.", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-girl-sitting-cafe_176420-5937.jpg" },
|
||||
{ id: "t5", name: "David W.", role: "Homeowner", testimonial: "A complete transformation of our yard.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cute-green-eyed-woman-with-smile-poses-greenhouse-holds-plant_197531-12372.jpg" }
|
||||
]}
|
||||
title="Client Success Stories"
|
||||
description="We are proud of the beautiful outdoor spaces we have created for our valued clients."
|
||||
@@ -335,27 +148,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "10k+",
|
||||
title: "Trees Planted",
|
||||
description: "Environmentally conscious planting.",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15+",
|
||||
title: "Years Experience",
|
||||
description: "Decades of industry knowledge.",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "98%",
|
||||
title: "Retention Rate",
|
||||
description: "Clients keep coming back.",
|
||||
icon: Heart,
|
||||
},
|
||||
{ id: "m1", value: "10k+", title: "Trees Planted", description: "Environmentally conscious planting.", icon: Leaf },
|
||||
{ id: "m2", value: "15+", title: "Years Experience", description: "Decades of industry knowledge.", icon: Award },
|
||||
{ id: "m3", value: "98%", title: "Retention Rate", description: "Clients keep coming back.", icon: Heart }
|
||||
]}
|
||||
title="Our Impact"
|
||||
description="Key stats highlighting our commitment to quality."
|
||||
@@ -367,21 +162,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "How long does a project take?",
|
||||
content: "Timeline depends on size and complexity.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Do you provide maintenance?",
|
||||
content: "Yes, we offer ongoing landscape maintenance services.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Can you design custom pools?",
|
||||
content: "We work with partners for integrated swimming pools.",
|
||||
},
|
||||
{ id: "q1", title: "How long does a project take?", content: "Timeline depends on size and complexity." },
|
||||
{ id: "q2", title: "Do you provide maintenance?", content: "Yes, we offer ongoing landscape maintenance services." },
|
||||
{ id: "q3", title: "Can you design custom pools?", content: "We work with partners for integrated swimming pools." }
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about our landscaping process."
|
||||
@@ -397,24 +180,10 @@ export default function LandingPage() {
|
||||
title="Let's Start Your Landscape Design"
|
||||
description="Ready to revitalize your outdoor space? Reach out for a consultation."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Describe your landscape vision...",
|
||||
rows: 4,
|
||||
}}
|
||||
textarea={{ name: "message", placeholder: "Describe your landscape vision...", rows: 4 }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/greenhouse-owner-presenting-flowers-options-potential-customer-retailer-using-laptop_158595-7058.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -422,32 +191,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "#services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 AR Landscape Design"
|
||||
bottomRightText="All Rights Reserved"
|
||||
|
||||
Reference in New Issue
Block a user