Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitAuto: Add a section for testimonials between "use case" and "how to get started" on the top page / #94

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions components/HomePage/Testimonials.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import React from 'react';

const testimonials = [
{
quote: "This app has completely changed the way I work. It's fantastic!",
name: "John Doe",
avatar: "👤",
},
{
quote: "A must-have tool for anyone looking to improve their productivity.",
name: "Jane Smith",
avatar: "👤",
},
{
quote: "Incredible features and easy to use. Highly recommended!",
name: "Alice Johnson",
avatar: "👤",
},
];

const Testimonials = () => {
return (
<section className="testimonials">
<h2>Testimonials</h2>
<div className="testimonial-list">
{testimonials.map((testimonial, index) => (
<div key={index} className="testimonial">
<p>{testimonial.avatar}</p>
<blockquote>{testimonial.quote}</blockquote>
<p>- {testimonial.name}</p>
</div>
))}
</div>
</section>
);
};

export default Testimonials;