Update src/app/reviews/page.tsx

This commit is contained in:
2026-06-10 19:56:31 +00:00
parent 62afe59da1
commit 84e66a30d9

View File

@@ -1,12 +1,11 @@
"use client";
import React from "react";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import { Leaf, Star } from "lucide-react";
import { Star } from "lucide-react";
export default function ReviewsPage() {
return (
@@ -27,51 +26,40 @@ export default function ReviewsPage() {
<NavbarStyleFullscreen
brandName="Botanica Landscapes"
navItems={[
{ name: "Services", id: "services" },
{ name: "About Us", id: "about" },
{ name: "Our Team", id: "team" },
{ name: "Gallery", href: "/gallery" },
{ name: "Reviews", href: "/reviews" },
{ name: "Contact", id: "contact" }
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About Us", id: "/about-us" },
{ name: "Our Team", id: "/about-us#team" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Request a Quote", href: "#contact" }}
button={{ text: "Request a Quote", href: "/contact" }}
/>
</div>
<div id="reviews-hero" data-section="reviews-hero" className="py-24 text-center">
<div className="container mx-auto px-4">
<h1 className="text-5xl font-bold mb-4">Our Customer Reviews</h1>
<p className="text-lg max-w-2xl mx-auto mb-8">Hear what our satisfied clients in Yuba City have to say about our professional landscaping services.</p>
<div className="flex items-center justify-center space-x-2 text-primary-cta mb-12">
{[...Array(5)].map((_, i) => (
<Star key={i} className="w-8 h-8 fill-current" />
))}
<span className="text-3xl font-semibold">5.0 / 5.0 Rating</span>
<span className="text-lg text-foreground/70">(Based on 100+ Reviews)</span>
</div>
</div>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
title="Client Testimonials"
description="Positive feedback highlighting our hardworking staff, quality work, and reasonable pricing."
tag="Real Stories"
tagIcon={Leaf}
animationType="slide-up"
gridVariant="uniform-all-items-equal"
<TestimonialCardTwelve
cardTitle="What Our Clients Say"
cardTag="Client Stories"
cardTagIcon={Star}
cardAnimation="slide-up"
useInvertedBackground={false}
testimonials={[
{
id: "t1", name: "Maria S.", role: "Homeowner, Yuba City", testimonial: "Botanica Landscapes transformed our backyard into a stunning oasis. The team was incredibly hardworking and the quality of their work is unmatched. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/letter-m-made-green-grass_169016-57149.jpg", imageAlt: "Maria S. avatar"
id: "1", name: "Sarah L.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-woman-park_23-2148784849.jpg", imageAlt: "Portrait of Sarah L."
},
{
id: "t2", name: "John T.", role: "Business Owner, Marysville", testimonial: "We've used Botanica for our commercial property maintenance for years. They are always reliable, provide exceptional quality, and their pricing is very reasonable for the service provided.", imageSrc: "http://img.b2bpic.net/free-photo/letter-j-made-green-grass-with-flowers_169016-57279.jpg", imageAlt: "John T. avatar"
id: "2", name: "Mark T.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-gardener-with-plant_23-2148784850.jpg", imageAlt: "Portrait of Mark T."
},
{
id: "t3", name: "Alice B.", role: "Resident, Plumas Lake", testimonial: "Our garden has never looked better! The staff at Botanica are not only skilled but also very friendly and responsive. They truly care about their clients and the results.", imageSrc: "http://img.b2bpic.net/free-photo/letter-a-made-green-grass-with-flowers_169016-57223.jpg", imageAlt: "Alice B. avatar"
id: "3", name: "Emily R.", imageSrc: "http://img.b2bpic.net/free-photo/pretty-caucasian-woman_23-2148784851.jpg", imageAlt: "Portrait of Emily R."
},
{
id: "t4", name: "Richard K.", role: "Property Manager, Yuba City", testimonial: "Exceptional service from start to finish. Botanica Landscapes handled a complex project for us with professionalism and delivered outstanding quality within our budget. Very impressed!", imageSrc: "http://img.b2bpic.net/free-photo/letter-r-made-green-grass-with-flowers_169016-57394.jpg", imageAlt: "Richard K. avatar"
id: "4", name: "David K.", imageSrc: "http://img.b2bpic.net/free-photo/man-working-vegetable-garden_23-2149023214.jpg", imageAlt: "Portrait of David K."
},
{
id: "5", name: "Anna G.", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-flowers_23-2149405628.jpg", imageAlt: "Portrait of Anna G."
}
]}
/>
@@ -82,20 +70,20 @@ export default function ReviewsPage() {
columns={[
{
title: "Services", items: [
{ label: "Commercial Landscaping", href: "#services" },
{ label: "Residential Landscaping", href: "#services" },
{ label: "Landscape Maintenance", href: "#services" },
{ label: "Landscape Design", href: "#services" },
{ label: "Lawn Care", href: "#services" },
{ label: "Irrigation Services", href: "#services" }
{ label: "Commercial Landscaping", href: "/services" },
{ label: "Residential Landscaping", href: "/services" },
{ label: "Landscape Maintenance", href: "/services" },
{ label: "Landscape Design", href: "/services" },
{ label: "Lawn Care", href: "/services" },
{ label: "Irrigation Services", href: "/services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Team", href: "#team" },
{ label: "About Us", href: "/about-us" },
{ label: "Our Team", href: "/about-us#team" },
{ label: "Testimonials", href: "/reviews" },
{ label: "FAQ", href: "#faq" }
{ label: "FAQ", href: "/contact#faq" }
]
},
{