Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ba83adb66 | |||
| 7e024e19e1 | |||
| d68c85c674 | |||
| 94cf821023 | |||
| 5d90680914 | |||
| 05f7b90e3a | |||
| e46048b156 | |||
| e1b370ecce | |||
| f5ce726f2a |
138
src/app/match-center/page.tsx
Normal file
138
src/app/match-center/page.tsx
Normal file
@@ -0,0 +1,138 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { CalendarDays, Trophy, ListChecks } from "lucide-react";
|
||||
|
||||
const commonNavItems = [
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Match Center", id: "/match-center" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
];
|
||||
|
||||
const commonFooterColumns = [
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Landscape Design", href: "#services" },
|
||||
{ label: "Hardscape & Softscape", href: "#services" },
|
||||
{ label: "Lawn & Garden Care", href: "#services" },
|
||||
{ label: "Smart Irrigation", href: "#services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Match Center", href: "/match-center" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "(555) 123-4567", href: "tel:5551234567" },
|
||||
{ label: "hello@greenscape.com", href: "mailto:hello@greenscape.com" },
|
||||
{ label: "Los Angeles, CA" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
export default function MatchCenterPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="large"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="GreenScape"
|
||||
navItems={commonNavItems}
|
||||
button={{ text: "Call Now", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="relative z-10 py-16 lg:py-24">
|
||||
<div className="container mx-auto px-4">
|
||||
<h1 className="text-4xl lg:text-5xl font-semibold text-center mb-12 animate-entrance-slide">Match Center</h1>
|
||||
|
||||
<div id="match-calendar" data-section="match-calendar" className="mb-16">
|
||||
<FeatureCardNineteen
|
||||
tag="Upcoming Matches"
|
||||
tagIcon={CalendarDays}
|
||||
title="Match Calendar"
|
||||
description="Stay updated with all the scheduled matches and events."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
tag: "Football", title: "Team A vs Team B", subtitle: "2024-10-26, 19:00 UTC", description: "League Match, Stadium Name. Get ready for an intense showdown!"},
|
||||
{
|
||||
tag: "Basketball", title: "Team C vs Team D", subtitle: "2024-10-27, 21:00 UTC", description: "Cup Semi-Finals, Arena Name. Don't miss the action!"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="results-display" data-section="results-display" className="mb-16">
|
||||
<FeatureCardNineteen
|
||||
tag="Latest Outcomes"
|
||||
tagIcon={Trophy}
|
||||
title="Match Results"
|
||||
description="Catch up on the scores and highlights from recent games."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
tag: "Football", title: "Team X 2 - 1 Team Y", subtitle: "2024-10-20", description: "Team X secured a narrow victory in a thrilling match. Highlights available.", buttons: [{text: "View Details", href: "/match-center/123"}]
|
||||
},
|
||||
{
|
||||
tag: "Basketball", title: "Team P 88 - 92 Team Q", subtitle: "2024-10-19", description: "Team Q won after an overtime classic. Full match report.", buttons: [{text: "View Details", href: "/match-center/124"}]
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="standings-table" data-section="standings-table" className="mb-16">
|
||||
<FeatureCardNineteen
|
||||
tag="League Rankings"
|
||||
tagIcon={ListChecks}
|
||||
title="League Standings"
|
||||
description="See how your favorite teams stack up against the competition."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
tag: "Premier League", title: "Current Standings (Top 2)", subtitle: "1. Team Alpha (25 pts), 2. Team Beta (22 pts)", description: "Close race at the top as the season progresses. Full table available."},
|
||||
{
|
||||
tag: "NBA Conference", title: "Eastern Conference Leaders", subtitle: "1. Team Zenith (15-2), 2. Team Nova (13-4)", description: "Exciting competition in the East. Check out the full breakdown."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={commonFooterColumns}
|
||||
bottomLeftText="© 2026 GreenScape Landscaping"
|
||||
bottomRightText="All rights reserved"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
109
src/app/newsroom/page.tsx
Normal file
109
src/app/newsroom/page.tsx
Normal file
@@ -0,0 +1,109 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||
import { Newspaper } from "lucide-react";
|
||||
|
||||
export default function NewsroomPage() {
|
||||
const navItems = [
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Team", id: "/#team" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Newsroom", id: "/newsroom" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Landscape Design", href: "/#services" },
|
||||
{ label: "Hardscape & Softscape", href: "/#services" },
|
||||
{ label: "Lawn & Garden Care", href: "/#services" },
|
||||
{ label: "Smart Irrigation", href: "/#services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/#about" },
|
||||
{ label: "Team", href: "/#team" },
|
||||
{ label: "Testimonials", href: "/#testimonials" },
|
||||
{ label: "FAQ", href: "/#faq" },
|
||||
{ label: "Newsroom", href: "/newsroom" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "(555) 123-4567", href: "tel:5551234567" },
|
||||
{ label: "hello@greenscape.com", href: "mailto:hello@greenscape.com" },
|
||||
{ label: "Los Angeles, CA" }
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="large"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="GreenScape"
|
||||
navItems={navItems}
|
||||
button={{ text: "Call Now", href: "/#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="newsroom" data-section="newsroom">
|
||||
<BlogCardThree
|
||||
tag="Newsroom"
|
||||
tagIcon={Newspaper}
|
||||
title="Latest Updates"
|
||||
description="Stay informed with our club news, match highlights, and transfer rumors."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
carouselMode="buttons"
|
||||
blogs={[
|
||||
{
|
||||
id: "club-news-1", category: "Club News", title: "Annual Charity Event Raises Record Funds", excerpt: "Our annual charity gala was a huge success, raising over $50,000 for local community programs. A big thank you to all who participated!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-3.jpg", imageAlt: "Charity event group photo", authorName: "Club Admin", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", date: "October 26, 2023"
|
||||
},
|
||||
{
|
||||
id: "match-news-1", category: "Match News", title: "Thrilling Victory in Season Opener", excerpt: "Our team kicked off the season with a nail-biting 3-2 victory against rivals. Watch the highlights!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-5.jpg", imageAlt: "Soccer match highlights", authorName: "Sports Reporter", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", date: "October 25, 2023"
|
||||
},
|
||||
{
|
||||
id: "transfer-news-1", category: "Transfer News", title: "Star Forward Signs New Long-Term Deal", excerpt: "We are thrilled to announce that our star forward, Alexandro, has signed a new long-term contract, committing his future to the club.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-9.jpg", imageAlt: "Football player signing contract", authorName: "Transfer Desk", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.jpg", date: "October 24, 2023"
|
||||
},
|
||||
{
|
||||
id: "club-news-2", category: "Club News", title: "Youth Academy Player Wins National Award", excerpt: "Rising talent, Maya Singh, from our youth academy has been recognized with the prestigious Young Player of the Year award.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-10.jpg", imageAlt: "Young player with award", authorName: "Youth Development", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-4.jpg", date: "October 23, 2023"
|
||||
},
|
||||
{
|
||||
id: "match-news-2", category: "Match News", title: "Derby Day Preview: Key Players to Watch", excerpt: "All eyes are on the upcoming derby. Get our expert analysis on the key matchups and players who could decide the game.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-6.jpg", imageAlt: "Derby match preview", authorName: "Tactical Analyst", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-11.jpg", date: "October 22, 2023"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={footerColumns}
|
||||
bottomLeftText="© 2026 GreenScape Landscaping"
|
||||
bottomRightText="All rights reserved"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
223
src/app/page.tsx
223
src/app/page.tsx
@@ -15,6 +15,42 @@ import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Leaf, TreePine } from "lucide-react";
|
||||
|
||||
export default function LandscapingPage() {
|
||||
const navItems = [
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Team", id: "/#team" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Newsroom", id: "/newsroom" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Landscape Design", href: "/#services" },
|
||||
{ label: "Hardscape & Softscape", href: "/#services" },
|
||||
{ label: "Lawn & Garden Care", href: "/#services" },
|
||||
{ label: "Smart Irrigation", href: "/#services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/#about" },
|
||||
{ label: "Team", href: "/#team" },
|
||||
{ label: "Testimonials", href: "/#testimonials" },
|
||||
{ label: "FAQ", href: "/#faq" },
|
||||
{ label: "Newsroom", href: "/newsroom" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "(555) 123-4567", href: "tel:5551234567" },
|
||||
{ label: "hello@greenscape.com", href: "mailto:hello@greenscape.com" },
|
||||
{ label: "Los Angeles, CA" }
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -32,14 +68,8 @@ export default function LandscapingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="GreenScape"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Call Now", href: "#contact" }}
|
||||
navItems={navItems}
|
||||
button={{ text: "Call Now", href: "/#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -50,8 +80,8 @@ export default function LandscapingPage() {
|
||||
title="Transform Your Outdoor Space"
|
||||
description="Professional landscaping design, installation, and maintenance services. From lush gardens to stunning hardscapes, we bring your vision to life."
|
||||
buttons={[
|
||||
{ text: "Get Free Estimate", href: "#contact" },
|
||||
{ text: "Our Services", href: "#services" },
|
||||
{ text: "Get Free Estimate", href: "/#contact" },
|
||||
{ text: "Our Services", href: "/#services" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/hero.jpg"
|
||||
@@ -60,21 +90,13 @@ export default function LandscapingPage() {
|
||||
textPosition="top"
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah M.",
|
||||
handle: "Homeowner",
|
||||
testimonial: "GreenScape completely transformed our backyard. The team was professional, creative, and delivered beyond our expectations.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg",
|
||||
imageAlt: "Sarah M.",
|
||||
name: "Sarah M.", handle: "Homeowner", testimonial: "GreenScape completely transformed our backyard. The team was professional, creative, and delivered beyond our expectations.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", imageAlt: "Sarah M."
|
||||
},
|
||||
{
|
||||
name: "David K.",
|
||||
handle: "Property Manager",
|
||||
testimonial: "We've used GreenScape for all our commercial properties. Their maintenance plans keep everything looking pristine year-round.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg",
|
||||
imageAlt: "David K.",
|
||||
},
|
||||
name: "David K.", handle: "Property Manager", testimonial: "We've used GreenScape for all our commercial properties. Their maintenance plans keep everything looking pristine year-round.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", imageAlt: "David K."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -106,37 +128,17 @@ export default function LandscapingPage() {
|
||||
imageContainerClassName="!rotate-0 !aspect-square"
|
||||
features={[
|
||||
{
|
||||
tag: "Design",
|
||||
title: "Landscape Design",
|
||||
subtitle: "Custom Plans",
|
||||
description: "We create tailored landscape designs that complement your property's architecture and your personal style.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-2.jpg",
|
||||
imageAlt: "Landscape design",
|
||||
tag: "Design", title: "Landscape Design", subtitle: "Custom Plans", description: "We create tailored landscape designs that complement your property's architecture and your personal style.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-2.jpg", imageAlt: "Landscape design"
|
||||
},
|
||||
{
|
||||
tag: "Installation",
|
||||
title: "Hardscape & Softscape",
|
||||
subtitle: "Full Installation",
|
||||
description: "From patios and walkways to gardens and trees, we handle the complete installation process.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-3.jpg",
|
||||
imageAlt: "Hardscape installation",
|
||||
tag: "Installation", title: "Hardscape & Softscape", subtitle: "Full Installation", description: "From patios and walkways to gardens and trees, we handle the complete installation process.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-3.jpg", imageAlt: "Hardscape installation"
|
||||
},
|
||||
{
|
||||
tag: "Maintenance",
|
||||
title: "Lawn & Garden Care",
|
||||
subtitle: "Ongoing Service",
|
||||
description: "Keep your property looking pristine year-round with our professional maintenance plans.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-4.jpg",
|
||||
imageAlt: "Lawn maintenance",
|
||||
tag: "Maintenance", title: "Lawn & Garden Care", subtitle: "Ongoing Service", description: "Keep your property looking pristine year-round with our professional maintenance plans.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-4.jpg", imageAlt: "Lawn maintenance"
|
||||
},
|
||||
{
|
||||
tag: "Irrigation",
|
||||
title: "Smart Irrigation",
|
||||
subtitle: "Water Management",
|
||||
description: "Efficient irrigation systems that keep your landscape healthy while conserving water.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-5.jpg",
|
||||
imageAlt: "Irrigation system",
|
||||
},
|
||||
tag: "Irrigation", title: "Smart Irrigation", subtitle: "Water Management", description: "Efficient irrigation systems that keep your landscape healthy while conserving water.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-5.jpg", imageAlt: "Irrigation system"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -151,26 +153,14 @@ export default function LandscapingPage() {
|
||||
animationType="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Expert Craftsmanship",
|
||||
role: "Decades of combined experience in landscape design and installation.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-6.jpg",
|
||||
imageAlt: "Expert craftsmanship",
|
||||
id: "1", name: "Expert Craftsmanship", role: "Decades of combined experience in landscape design and installation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-6.jpg", imageAlt: "Expert craftsmanship"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Eco-Friendly Approach",
|
||||
role: "Sustainable practices and native plant selections that thrive naturally.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-7.jpg",
|
||||
imageAlt: "Eco-friendly landscaping",
|
||||
id: "2", name: "Eco-Friendly Approach", role: "Sustainable practices and native plant selections that thrive naturally.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-7.jpg", imageAlt: "Eco-friendly landscaping"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Full-Service Care",
|
||||
role: "From initial design to ongoing maintenance, we handle everything.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-8.jpg",
|
||||
imageAlt: "Full-service care",
|
||||
},
|
||||
id: "3", name: "Full-Service Care", role: "From initial design to ongoing maintenance, we handle everything.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-8.jpg", imageAlt: "Full-service care"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -186,26 +176,14 @@ export default function LandscapingPage() {
|
||||
animationType="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "James Carter",
|
||||
role: "Lead Designer",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-11.jpg",
|
||||
imageAlt: "James Carter",
|
||||
id: "1", name: "James Carter", role: "Lead Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-11.jpg", imageAlt: "James Carter"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Maria Silva",
|
||||
role: "Horticulturist",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-10.jpg",
|
||||
imageAlt: "Maria Silva",
|
||||
id: "2", name: "Maria Silva", role: "Horticulturist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-10.jpg", imageAlt: "Maria Silva"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Ryan Mitchell",
|
||||
role: "Project Manager",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-9.jpg",
|
||||
imageAlt: "Ryan Mitchell",
|
||||
},
|
||||
id: "3", name: "Ryan Mitchell", role: "Project Manager", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-9.jpg", imageAlt: "Ryan Mitchell"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -215,35 +193,23 @@ export default function LandscapingPage() {
|
||||
cardTag="Trusted by Homeowners"
|
||||
cardTagIcon={Leaf}
|
||||
cardTitle="Over 500 happy clients trust GreenScape to transform and maintain their outdoor spaces."
|
||||
buttons={[{ text: "Contact Now", href: "#contact" }]}
|
||||
buttons={[{ text: "Contact Now", href: "/#contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
cardAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah M.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-10.jpg",
|
||||
imageAlt: "Sarah M.",
|
||||
id: "1", name: "Sarah M.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-10.jpg", imageAlt: "Sarah M."
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "David K.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-11.jpg",
|
||||
imageAlt: "David K.",
|
||||
id: "2", name: "David K.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-11.jpg", imageAlt: "David K."
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-4.jpg",
|
||||
imageAlt: "Emily R.",
|
||||
id: "3", name: "Emily R.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-4.jpg", imageAlt: "Emily R."
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Ryan M.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-9.jpg",
|
||||
imageAlt: "Ryan M.",
|
||||
},
|
||||
id: "4", name: "Ryan M.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-9.jpg", imageAlt: "Ryan M."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -258,35 +224,23 @@ export default function LandscapingPage() {
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How long does a typical landscaping project take?",
|
||||
content: "Most residential projects take 1-3 weeks depending on scope. We'll provide a detailed timeline during your consultation so you know exactly what to expect.",
|
||||
id: "1", title: "How long does a typical landscaping project take?", content: "Most residential projects take 1-3 weeks depending on scope. We'll provide a detailed timeline during your consultation so you know exactly what to expect."
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you offer free consultations?",
|
||||
content: "Yes! We offer complimentary on-site consultations where we assess your property, discuss your vision, and provide a detailed estimate — no obligation.",
|
||||
id: "2", title: "Do you offer free consultations?", content: "Yes! We offer complimentary on-site consultations where we assess your property, discuss your vision, and provide a detailed estimate — no obligation."
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "What areas do you serve?",
|
||||
content: "We serve the greater metropolitan area and surrounding suburbs within a 50-mile radius. Contact us to confirm service availability in your location.",
|
||||
id: "3", title: "What areas do you serve?", content: "We serve the greater metropolitan area and surrounding suburbs within a 50-mile radius. Contact us to confirm service availability in your location."
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Do you provide ongoing maintenance?",
|
||||
content: "Absolutely. We offer weekly, bi-weekly, and monthly maintenance plans that include mowing, trimming, fertilization, and seasonal cleanups.",
|
||||
id: "4", title: "Do you provide ongoing maintenance?", content: "Absolutely. We offer weekly, bi-weekly, and monthly maintenance plans that include mowing, trimming, fertilization, and seasonal cleanups."
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Are your practices eco-friendly?",
|
||||
content: "Yes, sustainability is core to our approach. We use native plants, organic fertilizers, smart irrigation, and environmentally responsible methods whenever possible.",
|
||||
id: "5", title: "Are your practices eco-friendly?", content: "Yes, sustainability is core to our approach. We use native plants, organic fertilizers, smart irrigation, and environmentally responsible methods whenever possible."
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "Do you handle permits and HOA approvals?",
|
||||
content: "We handle all necessary permits and can work directly with your HOA to ensure your project meets community guidelines and gets approved smoothly.",
|
||||
},
|
||||
id: "6", title: "Do you handle permits and HOA approvals?", content: "We handle all necessary permits and can work directly with your HOA to ensure your project meets community guidelines and gets approved smoothly."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -316,12 +270,10 @@ export default function LandscapingPage() {
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number" },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number" }
|
||||
]}
|
||||
multiSelect={{
|
||||
name: "service",
|
||||
label: "Select a Service",
|
||||
options: ["Landscape Design", "Hardscape & Softscape", "Lawn & Garden Care", "Smart Irrigation"],
|
||||
name: "service", label: "Select a Service", options: ["Landscape Design", "Hardscape & Softscape", "Lawn & Garden Care", "Smart Irrigation"]
|
||||
}}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your project...", rows: 4, required: true }}
|
||||
/>
|
||||
@@ -329,34 +281,7 @@ export default function LandscapingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Landscape Design", href: "#services" },
|
||||
{ label: "Hardscape & Softscape", href: "#services" },
|
||||
{ label: "Lawn & Garden Care", href: "#services" },
|
||||
{ label: "Smart Irrigation", href: "#services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{ label: "(555) 123-4567", href: "tel:5551234567" },
|
||||
{ label: "hello@greenscape.com", href: "mailto:hello@greenscape.com" },
|
||||
{ label: "Los Angeles, CA" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={footerColumns}
|
||||
bottomLeftText="© 2026 GreenScape Landscaping"
|
||||
bottomRightText="All rights reserved"
|
||||
/>
|
||||
|
||||
92
src/app/sponsors/page.tsx
Normal file
92
src/app/sponsors/page.tsx
Normal file
@@ -0,0 +1,92 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import { Leaf } from "lucide-react";
|
||||
|
||||
export default function SponsorsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="large"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="GreenScape"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Sponsors", id: "/sponsors" },
|
||||
{ name: "Fan Space", id: "fan-space" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Call Now", href: "/#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="sponsors-content" data-section="sponsors-content">
|
||||
<SocialProofOne
|
||||
title="Our Valued Sponsors"
|
||||
description="We are grateful for the support of our partners who help us bring beautiful landscapes to life."
|
||||
names={[
|
||||
"GreenThumb Nurseries", "HydroFlow Irrigation", "LawnPro Equipment", "EcoFertilizer Co.", "Urban Gardens Supplies", "Garden Design Studios"
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
showCard={true}
|
||||
speed={30}
|
||||
tag="Partners"
|
||||
tagIcon={Leaf}
|
||||
textboxLayout="default"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Landscape Design", href: "/#services" },
|
||||
{ label: "Hardscape & Softscape", href: "/#services" },
|
||||
{ label: "Lawn & Garden Care", href: "/#services" },
|
||||
{ label: "Smart Irrigation", href: "/#services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/#about" },
|
||||
{ label: "Team", href: "/#team" },
|
||||
{ label: "Testimonials", href: "/#testimonials" },
|
||||
{ label: "Sponsors", href: "/sponsors" },
|
||||
{ label: "FAQ", href: "/#faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "(555) 123-4567", href: "tel:5551234567" },
|
||||
{ label: "hello@greenscape.com", href: "mailto:hello@greenscape.com" },
|
||||
{ label: "Los Angeles, CA" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2026 GreenScape Landscaping"
|
||||
bottomRightText="All rights reserved"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user