Files
BloomValleyNursery/src/_data/testimonials.js

37 lines
1.1 KiB
JavaScript

/**
* @fileoverview This data file contains all testimonials for the Testimonials Feature.
*/
/* **Unit Template**
{
"id": "",
"clientName": "",
"testimonial": "",
"dateObtained": ""
}
*/
const TESTIMONIALS = [
{
"id": "T01",
"clientName": "Caroline N.",
"testimonial": "My order arrived the very next day. The speed of delivery and high-quality products provided by Bloom Valley Nursery helped my project go smoothly from start to finish!",
"dateObtained": "2024-11-23"
},
{
"id": "T02",
"clientName": "Morris F.",
"testimonial": "Thanks to BVN's Workshops and amazing line of products, I won 'Best Azaleas' at the 2024 Royal Horticultural Society's American Cup!",
"dateObtained": "2024-12-03"
},
{
"id": "T03",
"clientName": "Gladis B.",
"testimonial": "Bloom Valley Nursery's community garden inspired me take charge of my health. I was able to lose 50 pounds!",
"dateObtained": "2025-03-22"
}
];
module.exports = {
TESTIMONIALS
};