New Testimonial Component

Example 1: Direct Component Usage

Sarah Stone

Sarah Stone

Co-Founder

Our partnership with SuperPath is built on a foundation of trust and a world-class learning and knowledge delivery platform—one of the best we've seen in over 20 years in the industry. The team, led by Simon and Barry, are true professionals who deeply understand their customers' needs and consistently add value at every step. 90% of LinkABLE customers choose or switch to the SuperPath platform after experiencing its impact on their employees.

Example 2: Block Wrapper Usage

Sarah Stone

Sarah Stone

Co-Founder

Our partnership with SuperPath is built on a foundation of trust and a world-class learning and knowledge delivery platform—one of the best we've seen in over 20 years in the industry. The team, led by Simon and Barry, are true professionals who deeply understand their customers' needs and consistently add value at every step. 90% of LinkABLE customers choose or switch to the SuperPath platform after experiencing its impact on their employees.

Example 3: Without Case Study Link

John Smith

John Smith

CEO

SuperPath has transformed the way we deliver training to our team. The platform is intuitive, powerful, and our employees love using it. It's been a game-changer for our learning and development programs.

Usage Instructions

---
import NewTestimonial from "../components/NewTestimonial.astro";

const testimonial = {
    name: "Sarah Stone",
    jobTitle: "Co-Founder",
    company: "LinkABLE",
    testimonialText: "Your testimonial text here...",
    personImage: {
        url: "path/to/image.jpg",
        alt: "Sarah Stone",
    },
    companyLogo: {
        url: "path/to/logo.svg",
        alt: "LinkABLE Logo",
    },
    linkedCaseStudy: {
        slug: "case-study-slug",
        title: "Case Study Title",
    },
    backgroundColor: "#f8f5fc", // Optional
};
---

<NewTestimonial {...testimonial} />