Add src/app/reviews/page.tsx

This commit is contained in:
2026-03-09 16:05:22 +00:00
parent c4d0be80f2
commit d63365a65c

95
src/app/reviews/page.tsx Normal file
View File

@@ -0,0 +1,95 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import ContactText from '@/components/sections/contact/ContactText';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Star, Phone, MessageCircle, MapPin } from "lucide-react";
export default function ReviewsPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="compact"
sizing="largeSmallSizeMediumTitles"
background="fluid"
cardStyle="inset"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Plants", id: "plants" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Call Now", href: "tel:+923139554161" }}
brandName="OBAID Nursery"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
testimonials={[
{
id: "1", title: "Exceptional Quality Plants", quote: "I purchased persimmon plants from OBAID Nursery and they have grown beautifully. The quality is outstanding and the plants came in perfect condition. Highly recommended!", name: "Ahmad Khan", role: "Farmer, Nowshera", imageSrc: "http://img.b2bpic.net/free-photo/man-picking-up-organic-carrot-right-from-field_329181-16477.jpg", imageAlt: "Ahmad Khan testimonial"
},
{
id: "2", title: "Beautiful Garden Transformation", quote: "The ornamental plants from OBAID Nursery transformed my garden. The staff provided excellent guidance on plant care and selection. My family loves the green space now.", name: "Fatima Hassan", role: "Homeowner, Peshawar", imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-spending-time-spring-park_1157-37061.jpg", imageAlt: "Fatima Hassan testimonial"
},
{
id: "3", title: "Trusted Nursery for Years", quote: "Been buying plants from OBAID Nursery for the past 3 years. Their consistency in quality and affordable pricing is unbeatable. They truly care about their customers.", name: "Muhammad Ali", role: "Commercial Landscaper", imageSrc: "http://img.b2bpic.net/free-photo/confident-handsome-middle-aged-entrepreneur_1262-4871.jpg", imageAlt: "Muhammad Ali testimonial"
},
{
id: "4", title: "Best Fruit Trees Around", quote: "Purchased fruit trees for my orchard from OBAID Nursery. The quality and health of the trees exceeded my expectations. Their expert knowledge is invaluable.", name: "Khalid Ahmed", role: "Orchard Owner, KPK", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-cutting-leaves_23-2148579928.jpg", imageAlt: "Khalid Ahmed testimonial"
},
{
id: "5", title: "Reliable and Professional", quote: "Ordering from OBAID Nursery was a smooth experience. Delivery was timely, packaging was excellent, and all plants arrived healthy. Will definitely order again!", name: "Sara Malik", role: "Garden Enthusiast", imageSrc: "http://img.b2bpic.net/free-photo/nature-woman-outdoor-smiling-portrait_1328-5043.jpg", imageAlt: "Sara Malik testimonial"
},
{
id: "6", title: "Excellent Customer Service", quote: "The team at OBAID Nursery goes above and beyond. They answered all my questions about plant care and helped me choose the right plants for my space.", name: "Hassan Raza", role: "Office Manager", imageSrc: "http://img.b2bpic.net/free-photo/happy-man-showing-thumbs-up_1421-4396.jpg", imageAlt: "Hassan Raza testimonial"
}
]}
title="Customer Reviews & Testimonials"
description="Hear from our satisfied customers who trust OBAID Nursery for premium plants and exceptional service."
textboxLayout="default"
useInvertedBackground={false}
tag="Customer Testimonials"
tagIcon={Star}
/>
</div>
<div id="cta-contact" data-section="cta-contact">
<ContactText
text="Ready to experience the same quality and service? Visit OBAID Nursery today or call us to discuss your plant needs."
animationType="entrance-slide"
buttons={[
{ text: "Call Now", href: "tel:+923139554161" },
{ text: "WhatsApp Us", href: "https://wa.me/923139554161" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="OBAID Nursery"
copyrightText="© 2025 OBAID Nursery Farm Baloo. All rights reserved."
socialLinks={[
{ icon: Phone, href: "tel:+923139554161", ariaLabel: "Call OBAID Nursery" },
{ icon: MessageCircle, href: "https://wa.me/923139554161", ariaLabel: "WhatsApp OBAID Nursery" },
{ icon: MapPin, href: "https://maps.google.com/?q=Baloo,+Tehsil+Nowshera,+KPK,+Pakistan", ariaLabel: "Get directions to OBAID Nursery" }
]}
/>
</div>
</ThemeProvider>
);
}