Testimonials

Intro

This file contains the testimonials configuration for the application.Here you can set the testimonials you want to show in your application

In the file @config/testimonials.ts you can set the config of the testimonials

Example

The next example is the default configuration

export default {
    driver: 'builtin',
    items: [
        {
            body: 'I can\'t believe how easy it was to create a stunning landing page for my new SaaS product. Your platform saved me so much time and effort!',
            author: {
                name: 'Sarah Johnson',
                handle: null,
                imageUrl:
                    '/image/sara.png',
            },
        },
        {
            body: 'The speed at which I went from idea to a fully functional landing page was mind-blowing. This platform is a game-changer!',
            author: {
                name: 'Mark Anderson',
                handle: 'm4rk_',
                imageUrl: null
            },
        },
    ]
}

Usage

Table of Contents