Testimonials

A Testimonials component that shows feedbacks in a new unique way.

Mihir (OPM)

Written by Mihir (OPM)

Edwin Chen

Founder and CEO Surge AI

Edwin Chen
Surge AI
As
a
startup
that
moves
quickly
and
often,
they
have
been
able
to
roll
with
the
punches
at
a
high
standard.
Whether
for
our
marketing
or
product
design
needs,
they
are
the
design
partner
I
wouldn't
want
to
change.

Vladimir Danila

Founder and CEO Linearity

Vladimir Danila
Linearity
Konpo
for
us
is
like
our
internal
design
team.
Every
single
design
they
made
for
us
is
amazing.
We're
super
happy
to
work
with
them
and
would
not
replace
them
with
anyone
else.
They
simply
go
the
extra
mile.

Sasha Morris

Director of Product Management Relias

Sasha Morris
Relias
Konpo
worked
to
get
our
new
design
system
implemented,
which
has
been
the
foundation
for
many
of
Relias'
products.
The
team
delivers
high-quality
and
thoughtful
work.
They've
been
a
great
partner
throughout
the
process.They
simply
go
the
extra
mile!

Trond Erik Vee Aune

CEO Vectron Biosolutions AS

Trond Erik Vee Aune
Vectron Biosolutions AS
They're
always
willing
to
do
better
and
eager
to
listen
to
us
and
change
things
accordingly
even
more
so
than
many
of
the
larger
companies.
Overall,
Konpo
has
gone
beyond
expectation.

The Testimonials component provides a beautiful Testimonials that reveals words one by one with a staggered motion effect. Perfect for hero sections, headings, and attention-grabbing text elements.

Installation

Examples

Edwin Chen

Founder and CEO Surge AI

Edwin Chen
Surge AI
As
a
startup
that
moves
quickly
and
often,
they
have
been
able
to
roll
with
the
punches
at
a
high
standard.
Whether
for
our
marketing
or
product
design
needs,
they
are
the
design
partner
I
wouldn't
want
to
change.

Vladimir Danila

Founder and CEO Linearity

Vladimir Danila
Linearity
Konpo
for
us
is
like
our
internal
design
team.
Every
single
design
they
made
for
us
is
amazing.
We're
super
happy
to
work
with
them
and
would
not
replace
them
with
anyone
else.
They
simply
go
the
extra
mile.

Sasha Morris

Director of Product Management Relias

Sasha Morris
Relias
Konpo
worked
to
get
our
new
design
system
implemented,
which
has
been
the
foundation
for
many
of
Relias'
products.
The
team
delivers
high-quality
and
thoughtful
work.
They've
been
a
great
partner
throughout
the
process.They
simply
go
the
extra
mile!

Trond Erik Vee Aune

CEO Vectron Biosolutions AS

Trond Erik Vee Aune
Vectron Biosolutions AS
They're
always
willing
to
do
better
and
eager
to
listen
to
us
and
change
things
accordingly
even
more
so
than
many
of
the
larger
companies.
Overall,
Konpo
has
gone
beyond
expectation.

Props

PropTypeDescriptionDefault
textstringThe text content to animate-
delaynumberDelay between each word animation (in seconds)0.15
classNamestringAdditional CSS classes-

Basic Usage

import { Testimonials } from "@/components/atomixui/testimonials"
 
export default function Example() {
   const data = [
    {
      image:
        "https://cdn.prod.website-files.com/655918eb31cdcff15aaa3504/6582a897b423ba32d1b057d9_edwin-p-500.jpg",
      name: "Edwin Chen",
      designation: "Founder and CEO",
      company: "Surge AI",
      companyLogo:
        "https://cdn.prod.website-files.com/655918eb31cdcff15aaa3504/65972c5f3435c90e0c7dc612_Surge%20AI.svg",
      background:
        "https://cdn.prod.website-files.com/655918eb31cdcff15aaa3504/65d3550d95a8f96c7dd2764b_Project%3DSurge.svg",
      content:
        "As a startup that moves quickly and often, they have been able to roll with the punches at a high standard. Whether for our marketing or product design needs, they are the design partner I wouldn't want to change.",
    },
    // ...... more data
  ];
  return (
    <Testimonials testimonials={data} />
  )
}