Update src/app/page.tsx
This commit is contained in:
289
src/app/page.tsx
289
src/app/page.tsx
@@ -29,29 +29,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/#about",
|
||||
},
|
||||
name: "About", id: "/#about"},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/portfolio",
|
||||
},
|
||||
name: "Portfolio", id: "/portfolio"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/#services",
|
||||
},
|
||||
name: "Services", id: "/#services"},
|
||||
{
|
||||
name: "Process",
|
||||
id: "/process",
|
||||
},
|
||||
name: "Process", id: "/process"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/side-view-young-woman-posing-with-flower_23-2149513259.jpg"
|
||||
logoAlt="Adam Thorne Landscape Designer Logo"
|
||||
@@ -59,29 +47,22 @@ export default function LandingPage() {
|
||||
bottomLeftText="Designing Outdoor Spaces"
|
||||
bottomRightText="hello@adamlandscape.com"
|
||||
button={{
|
||||
text: "Book Consultation",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Book Consultation", href: "/contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "rotated-rays-animated",
|
||||
}}
|
||||
variant: "rotated-rays-animated"}}
|
||||
title="Designing Outdoor Spaces That Inspire Everyday Living"
|
||||
description="Creating timeless landscapes, gardens, and outdoor experiences that blend beauty, nature, and functionality."
|
||||
tagAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{
|
||||
text: "View Portfolio",
|
||||
href: "/portfolio",
|
||||
},
|
||||
text: "View Portfolio", href: "/portfolio"},
|
||||
{
|
||||
text: "Book Consultation",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Book Consultation", href: "/contact"},
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sustainable-urban-living-rooftop-gardens-eco-friendly-homes_23-2151990803.jpg"
|
||||
@@ -92,39 +73,22 @@ export default function LandingPage() {
|
||||
|
||||
<div id="featured-projects" data-section="featured-projects">
|
||||
<FeatureCardTwentyThree
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "fp1",
|
||||
title: "The Serenity Estate",
|
||||
tags: [
|
||||
"Modern",
|
||||
"Luxury",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-meat-near-outdoor-barbecue_23-2147840981.jpg",
|
||||
imageAlt: "Modern backyard oasis with fire pit",
|
||||
},
|
||||
id: "fp1", title: "The Serenity Estate", tags: [
|
||||
"Modern", "Luxury"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-meat-near-outdoor-barbecue_23-2147840981.jpg", imageAlt: "Modern backyard oasis with fire pit"},
|
||||
{
|
||||
id: "fp2",
|
||||
title: "Zen Garden Retreat",
|
||||
tags: [
|
||||
"Minimalist",
|
||||
"Tranquil",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalistic-zen-stone-background_23-2150525988.jpg",
|
||||
imageAlt: "Serene Japanese garden water feature",
|
||||
},
|
||||
id: "fp2", title: "Zen Garden Retreat", tags: [
|
||||
"Minimalist", "Tranquil"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalistic-zen-stone-background_23-2150525988.jpg", imageAlt: "Serene Japanese garden water feature"},
|
||||
{
|
||||
id: "fp3",
|
||||
title: "Urban Oasis Rooftop",
|
||||
tags: [
|
||||
"Contemporary",
|
||||
"Compact",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912505.jpg",
|
||||
imageAlt: "Rooftop garden design city view",
|
||||
},
|
||||
id: "fp3", title: "Urban Oasis Rooftop", tags: [
|
||||
"Contemporary", "Compact"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912505.jpg", imageAlt: "Rooftop garden design city view"},
|
||||
]}
|
||||
title="Featured Projects"
|
||||
description="Explore our award-winning designs that redefine outdoor living."
|
||||
@@ -145,117 +109,46 @@ export default function LandingPage() {
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<PricingCardNine
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "s1",
|
||||
title: "Landscape Design",
|
||||
price: "Bespoke",
|
||||
period: "Project",
|
||||
features: [
|
||||
"Conceptual Planning",
|
||||
"3D Renderings",
|
||||
"Material Selection",
|
||||
"Site Analysis",
|
||||
],
|
||||
id: "s1", title: "Landscape Design", price: "Bespoke", period: "Project", features: [
|
||||
"Conceptual Planning", "3D Renderings", "Material Selection", "Site Analysis"],
|
||||
button: {
|
||||
text: "Learn More",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-algae-moss-podium_23-2151195090.jpg",
|
||||
imageAlt: "Detailed landscape blueprint design",
|
||||
},
|
||||
text: "Learn More", href: "/contact"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-algae-moss-podium_23-2151195090.jpg", imageAlt: "Detailed landscape blueprint design"},
|
||||
{
|
||||
id: "s2",
|
||||
title: "Garden Design",
|
||||
price: "Curated",
|
||||
period: "Per Space",
|
||||
features: [
|
||||
"Plant Palette Selection",
|
||||
"Horticultural Expertise",
|
||||
"Seasonal Planning",
|
||||
"Ecological Integration",
|
||||
],
|
||||
id: "s2", title: "Garden Design", price: "Curated", period: "Per Space", features: [
|
||||
"Plant Palette Selection", "Horticultural Expertise", "Seasonal Planning", "Ecological Integration"],
|
||||
button: {
|
||||
text: "Learn More",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lush-green-wall-with-vibrant-red-plant-foliage-mix-textures-colors-creating-beautiful-living-wall_191095-99870.jpg",
|
||||
imageAlt: "Beautiful flower bed garden planting",
|
||||
},
|
||||
text: "Learn More", href: "/contact"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lush-green-wall-with-vibrant-red-plant-foliage-mix-textures-colors-creating-beautiful-living-wall_191095-99870.jpg", imageAlt: "Beautiful flower bed garden planting"},
|
||||
{
|
||||
id: "s3",
|
||||
title: "Outdoor Living",
|
||||
price: "Transformative",
|
||||
period: "Per Area",
|
||||
features: [
|
||||
"Patio & Deck Design",
|
||||
"Kitchens & Dining",
|
||||
"Fire Features",
|
||||
"Water Elements",
|
||||
],
|
||||
id: "s3", title: "Outdoor Living", price: "Transformative", period: "Per Area", features: [
|
||||
"Patio & Deck Design", "Kitchens & Dining", "Fire Features", "Water Elements"],
|
||||
button: {
|
||||
text: "Learn More",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-making-barbecue_23-2148965321.jpg",
|
||||
imageAlt: "Luxury outdoor kitchen living area",
|
||||
},
|
||||
text: "Learn More", href: "/contact"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-making-barbecue_23-2148965321.jpg", imageAlt: "Luxury outdoor kitchen living area"},
|
||||
{
|
||||
id: "s4",
|
||||
title: "Irrigation Planning",
|
||||
price: "Efficient",
|
||||
period: "Per System",
|
||||
features: [
|
||||
"Smart System Design",
|
||||
"Water Conservation",
|
||||
"Drip & Sprinkler Layouts",
|
||||
"Maintenance Guidance",
|
||||
],
|
||||
id: "s4", title: "Irrigation Planning", price: "Efficient", period: "Per System", features: [
|
||||
"Smart System Design", "Water Conservation", "Drip & Sprinkler Layouts", "Maintenance Guidance"],
|
||||
button: {
|
||||
text: "Learn More",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-girl-umbrella-walk-forest-near-lake-rainy-weather_169016-11477.jpg",
|
||||
imageAlt: "Automated garden irrigation system",
|
||||
},
|
||||
text: "Learn More", href: "/contact"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-girl-umbrella-walk-forest-near-lake-rainy-weather_169016-11477.jpg", imageAlt: "Automated garden irrigation system"},
|
||||
{
|
||||
id: "s5",
|
||||
title: "Plant Selection",
|
||||
price: "Expert",
|
||||
period: "Per Consultation",
|
||||
features: [
|
||||
"Species Recommendation",
|
||||
"Soil Compatibility",
|
||||
"Climate Adaptability",
|
||||
"Aesthetic Harmony",
|
||||
],
|
||||
id: "s5", title: "Plant Selection", price: "Expert", period: "Per Consultation", features: [
|
||||
"Species Recommendation", "Soil Compatibility", "Climate Adaptability", "Aesthetic Harmony"],
|
||||
button: {
|
||||
text: "Learn More",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-flowers-basket-showing-green-plants_23-2148068756.jpg",
|
||||
imageAlt: "Hands selecting diverse plant samples",
|
||||
},
|
||||
text: "Learn More", href: "/contact"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-flowers-basket-showing-green-plants_23-2148068756.jpg", imageAlt: "Hands selecting diverse plant samples"},
|
||||
{
|
||||
id: "s6",
|
||||
title: "Consulting",
|
||||
price: "Insightful",
|
||||
period: "Hourly",
|
||||
features: [
|
||||
"Vision Clarification",
|
||||
"Problem Solving",
|
||||
"Feasibility Studies",
|
||||
"Expert Recommendations",
|
||||
],
|
||||
id: "s6", title: "Consulting", price: "Insightful", period: "Hourly", features: [
|
||||
"Vision Clarification", "Problem Solving", "Feasibility Studies", "Expert Recommendations"],
|
||||
button: {
|
||||
text: "Learn More",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-women-s-hands-holding-phone-taking-photo-girl-with-flowers_158595-7035.jpg",
|
||||
imageAlt: "Client consulting with landscape architect",
|
||||
},
|
||||
text: "Learn More", href: "/contact"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-women-s-hands-holding-phone-taking-photo-girl-with-flowers_158595-7035.jpg", imageAlt: "Client consulting with landscape architect"},
|
||||
]}
|
||||
title="Our Signature Services"
|
||||
description="Tailored landscape solutions to bring your vision to life."
|
||||
@@ -269,40 +162,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Michael & Sarah Chen",
|
||||
role: "Homeowners",
|
||||
testimonial: "Adam's ability to envision and execute our dream garden was simply remarkable. Every detail, from the plant selection to the custom water features, reflects a true artist.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-bearded-man-suit-laughing-smiling-standing-white-background_1258-155212.jpg",
|
||||
},
|
||||
id: "t1", name: "Michael & Sarah Chen", role: "Homeowners", testimonial: "Adam's ability to envision and execute our dream garden was simply remarkable. Every detail, from the plant selection to the custom water features, reflects a true artist.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-bearded-man-suit-laughing-smiling-standing-white-background_1258-155212.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Estate Manager",
|
||||
testimonial: "Working with Adam was an absolute pleasure. He captured the essence of our estate perfectly, creating a landscape that is both grand and intimately personal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg",
|
||||
},
|
||||
id: "t2", name: "Emily Rodriguez", role: "Estate Manager", testimonial: "Working with Adam was an absolute pleasure. He captured the essence of our estate perfectly, creating a landscape that is both grand and intimately personal.", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "David & Maria Kim",
|
||||
role: "Couple",
|
||||
testimonial: "Our backyard has been transformed into a serene retreat. Adam listened to our desires and delivered a design that exceeded all expectations. Highly recommended!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-greenhouse-owners-working-plant-nursery-communicating-by-lemon-tree_637285-1437.jpg",
|
||||
},
|
||||
id: "t3", name: "David & Maria Kim", role: "Couple", testimonial: "Our backyard has been transformed into a serene retreat. Adam listened to our desires and delivered a design that exceeded all expectations. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-greenhouse-owners-working-plant-nursery-communicating-by-lemon-tree_637285-1437.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Jessica Lee",
|
||||
role: "Developer",
|
||||
testimonial: "Adam brought an innovative approach to our urban development project. His green space design not only enhanced aesthetics but also integrated seamlessly with the architecture.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-woman-with-brunette-hair-has-fun-street-optimistic-short-haired-teen-beige-jacket-jeans-bright-sunglasses-posing-outside_197531-29340.jpg",
|
||||
},
|
||||
id: "t4", name: "Jessica Lee", role: "Developer", testimonial: "Adam brought an innovative approach to our urban development project. His green space design not only enhanced aesthetics but also integrated seamlessly with the architecture.", imageSrc: "http://img.b2bpic.net/free-photo/positive-woman-with-brunette-hair-has-fun-street-optimistic-short-haired-teen-beige-jacket-jeans-bright-sunglasses-posing-outside_197531-29340.jpg"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "The Thompson Family",
|
||||
role: "Family Home",
|
||||
testimonial: "Our children now have an enchanting space to explore, and we have a beautiful area to entertain. Adam crafted a family-friendly garden that is truly special.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-family-playing-summer-park_1157-38658.jpg",
|
||||
},
|
||||
id: "t5", name: "The Thompson Family", role: "Family Home", testimonial: "Our children now have an enchanting space to explore, and we have a beautiful area to entertain. Adam crafted a family-friendly garden that is truly special.", imageSrc: "http://img.b2bpic.net/free-photo/cute-family-playing-summer-park_1157-38658.jpg"},
|
||||
]}
|
||||
title="Client Experiences"
|
||||
description="Hear from those who have transformed their outdoor spaces with Adam Thorne's visionary design."
|
||||
@@ -316,66 +184,39 @@ export default function LandingPage() {
|
||||
logoText="Adam Thorne"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
title: "Navigation", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Portfolio",
|
||||
href: "/portfolio",
|
||||
},
|
||||
label: "Portfolio", href: "/portfolio"},
|
||||
{
|
||||
label: "Process",
|
||||
href: "/process",
|
||||
},
|
||||
label: "Process", href: "/process"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Landscape Design",
|
||||
href: "/#services",
|
||||
},
|
||||
label: "Landscape Design", href: "/#services"},
|
||||
{
|
||||
label: "Garden Design",
|
||||
href: "/#services",
|
||||
},
|
||||
label: "Garden Design", href: "/#services"},
|
||||
{
|
||||
label: "Outdoor Living",
|
||||
href: "/#services",
|
||||
},
|
||||
label: "Outdoor Living", href: "/#services"},
|
||||
{
|
||||
label: "Consulting",
|
||||
href: "/#services",
|
||||
},
|
||||
label: "Consulting", href: "/#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com/adamlandscape",
|
||||
},
|
||||
label: "Instagram", href: "https://instagram.com/adamlandscape"},
|
||||
{
|
||||
label: "Email",
|
||||
href: "mailto:hello@adamlandscape.com",
|
||||
},
|
||||
label: "Email", href: "mailto:hello@adamlandscape.com"},
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "#",
|
||||
},
|
||||
label: "WhatsApp", href: "#"},
|
||||
{
|
||||
label: "Austin, Texas",
|
||||
href: "#",
|
||||
},
|
||||
label: "Austin, Texas", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user