diff --git a/src/components/SQLCourse/ReviewsSection.tsx b/src/components/SQLCourse/ReviewsSection.tsx new file mode 100644 index 000000000..a86ece8be --- /dev/null +++ b/src/components/SQLCourse/ReviewsSection.tsx @@ -0,0 +1,118 @@ +import { StarIcon, User2Icon } from 'lucide-react'; + +type Review = { + name: string; + role: string; + rating: number; + text: string; + avatarUrl?: string; +}; + +export function ReviewsSection() { + const reviews: Review[] = [ + { + name: 'Tomáš Janků', + role: 'Software Engineer', + rating: 5, + text: "The course and it's interactivity is excellent and I'd honestly say it's one of the best on the SQL theme I've seen out there.", + avatarUrl: 'https://github.com/jankudev.png', + }, + { + name: 'Gourav Khunger', + role: 'Software Engineer', + rating: 5, + text: 'This course was absolutely brilliant! The integrated database environment to practice what I learned was the best part.', + avatarUrl: 'https://github.com/gouravkhunger.png', + }, + { + name: 'Meabed', + role: 'CTO', + rating: 5, + text: 'Kamran has clearly put a lot of thought into this course. The content, structure and exercises were all great.', + avatarUrl: 'https://github.com/meabed.png', + }, + { + name: 'Mohsin Aheer', + role: 'Software Engineer', + rating: 5, + text: 'I already knew SQL but this course taught me a bunch of new things. Practical examples and challenges were great. Highly recommended!', + avatarUrl: 'https://github.com/aheermohsinse.png', + }, + { + name: 'Reeve Tee', + role: 'Software Engineer', + rating: 5, + text: 'I found the course highly comprehensive and incredibly valuable. I would love to see more courses like this!', + avatarUrl: '', + }, + { + name: 'Zeeshan', + role: 'Software Engineer', + rating: 5, + text: 'Loved the teaching style and the way the course was structured. The AI tutor was a great help when I got stuck.', + avatarUrl: 'https://github.com/ziishaned.png', + }, + { + name: 'Adnan Ahmed', + role: 'Engineering Manager', + rating: 5, + text: 'Having the integrated IDE made a huge difference. Being able to immediately practice what I learned was invaluable.', + avatarUrl: 'https://github.com/idnan.png', + }, + { + name: 'Faisal Ahsan', + role: 'Software Engineer', + rating: 5, + text: 'The course and the learning experience was great. What I really liked was the no-fluff explanations and practical examples.', + avatarUrl: 'https://github.com/faisalahsan.png', + }, + { + name: 'Mian Asif', + role: 'Software Engineering Lead', + rating: 5, + text: "Best SQL course I've taken. The progression from basic to advanced concepts is well thought out, and the challenges are excellent.", + avatarUrl: 'https://github.com/mian.png', + }, + ]; + + return ( + <> +
{review.role}
+{review.text}
+