import { Flex, Heading, SimpleGrid, Stack, VStack } from '@chakra-ui/react' import * as React from 'react' import joshuaPictureSrc from 'public/images/homepage/joshua.jpg' import julienPictureSrc from 'public/images/homepage/julien.jpeg' import nicolaiPictureSrc from 'public/images/homepage/nicolai.jpg' import annaFilouPictureSrc from 'public/images/homepage/annaFilou.jpeg' import theoPictureSrc from 'public/images/homepage/theo.jpeg' import abhayPictureSrc from 'public/images/homepage/abhay.jpeg' import lucasPictureSrc from 'public/images/homepage/lucas.png' import oscarPictureSrc from 'public/images/homepage/oscar.jpeg' import invictuzPictureSrc from 'public/images/homepage/invictuz.png' import laszloPictureSrc from 'public/images/homepage/laszlo.jpeg' import { Testimonial } from './Testimonial' import { StaticImageData } from 'next/image' export type TestimonialData = { name: string avatarSrc?: StaticImageData provider: 'email' | 'productHunt' | 'capterra' | 'reddit' role?: string content: string | React.ReactNode } const testimonials: TestimonialData[][] = [ [ { name: 'Joshua Lim', role: 'Growth Strategist @ Socialhackrs Media', avatarSrc: joshuaPictureSrc, provider: 'email', content: 'I upgraded my typeforms to typebots and saw a conversion rate increase from 14% to 43% on my marketing campaigns. I noticed the improvement on day one. That was a game-changer.', }, { name: 'Laszlo Csömör', role: 'Digital Marketing Expert', provider: 'email', avatarSrc: laszloPictureSrc, content: ( <> Typebot is one of the best chatbot builders with its intelligent features and drag-and-drop simplicity. Its UI/UX is an earthly paradise...
What's even more important is the person who stands behind it. He guarantees that the platform will work and progress for a long time. ), }, { name: 'Theo Marechal', provider: 'productHunt', avatarSrc: theoPictureSrc, role: 'Nocode expert and content creator', content: ( <> Amazing product! I'm using Typebot for everything when it's about talking with customers.

What's amazing with Typebot is that it makes a "chat interface effect" without the hassle of being behind my computer all day responding to customers. Highly recommend ! ), }, { name: 'Nicolai Grut', role: 'CEO @ EcommerceNotebook.com', avatarSrc: nicolaiPictureSrc, provider: 'email', content: 'I am really loving using Typebot! So good. I have used all the top bots and yours is definitely the most user friendly, and yet still so powerful.', }, ], [ { name: 'Oscar', role: 'CEO', provider: 'capterra', avatarSrc: oscarPictureSrc, content: 'Within 5 minutes of signing up you can already have your bot running thanks to the templates it comes with. I have used many tools to make bots but none as simple, easy and powerful as Typebot.', }, { name: '_Invictuz', provider: 'reddit', avatarSrc: invictuzPictureSrc, content: "This is the sickest open-source project I've ever seen and demoed. The use case is so cool and modern and I can't believe how easy this is to get started using. The feature richness and polish in this project is incredible, it feel like a mature product. Unbelievable that this was built by one person. This is better than the demos of chatbot builders I've seen from full-fledged companies. I'm going to learn Typescript so that I can contribute to this someday. Mind-blowing stuff...", }, { name: 'Abhay Kulkarni', provider: 'productHunt', avatarSrc: abhayPictureSrc, role: 'Founder at Webisharp', content: 'Using this tool for the last 2 hours & built a full lead capture bot. Pretty good experience till now. @baptiste_arnaud All the best for future :)', }, { name: 'Lucas Barp', provider: 'email', avatarSrc: lucasPictureSrc, role: 'Founder at Barp Digital', content: 'The result of your work is incredible and can make life easier for many people.', }, ], [ { name: 'Goran Milic', role: 'General Manager, Beefii', provider: 'email', content: ( <> I used Typebot at my company and was impressed with how it cut our customer service workload in half. I was able to create a fully functional chatbot in minutes.
You can create a bot to answer frequently asked questions about your business or create a bot that helps promote your business on social media or any other platform., ), }, { name: 'Julien Muratot', role: 'Growth Manager @ Hornetwork', avatarSrc: julienPictureSrc, provider: 'email', content: 'I run Google ads all year long on our landing page that contains a typebot. I saw a 2x increase on our conversation rate compared to our old WordPress form.', }, { name: 'Igor T.', role: 'CTO', provider: 'capterra', content: 'Nice work. The developer promptly makes changes, which is quite rare. There was a suggestion for improvement and improvement, in 2 days it was implemented. Amazing! Good luck and thanks a lot', }, { name: 'Anna Filou', provider: 'productHunt', avatarSrc: annaFilouPictureSrc, role: 'Geek, Designer, Illustrator, Web Dev', content: "Seems like the product I've been waiting for Typeform to make! 😝", }, ], ] export const Testimonials = () => { return ( They've tried, they never looked back. 💙 {testimonials.map((testimonialGroup, index) => ( {testimonialGroup.map((testimonial, index) => ( ))} ))} ) }