|
1 | 1 | import { useEffect, useState } from "react"; |
2 | 2 | import { testimonials } from "../../utils/Testimonials" |
3 | 3 |
|
4 | | -// const testimonials2: Testimonial[] = [ |
5 | | -// { |
6 | | -// id: 1, |
7 | | -// name: "Sarah Enchanter", |
8 | | -// role: "Senior Spellcaster", |
9 | | -// avatar: "https://placehold.co/600x400", |
10 | | -// quote: |
11 | | -// "Siacaraa has revolutionized our magical code transformations. The enchanted functions are pure wizardry!", |
12 | | -// }, |
13 | | -// { |
14 | | -// id: 2, |
15 | | -// name: "Marcus Thaumaturge", |
16 | | -// role: "Code Alchemist", |
17 | | -// avatar: "https://placehold.co/600x400", |
18 | | -// quote: |
19 | | -// "The performance improvements are truly mystical. Our spells execute faster than ever before.", |
20 | | -// }, |
21 | | -// { |
22 | | -// id: 3, |
23 | | -// name: "Luna Codebinder", |
24 | | -// role: "Arcane Developer", |
25 | | -// avatar: "https://placehold.co/600x400", |
26 | | -// quote: |
27 | | -// "The elegant syntax feels like writing in an ancient spellbook. Simply magical!", |
28 | | -// }, |
29 | | -// { |
30 | | -// id: 4, |
31 | | -// name: "Eldrich Bytecraft", |
32 | | -// role: "Magic Systems Architect", |
33 | | -// avatar: "https://placehold.co/600x400", |
34 | | -// quote: |
35 | | -// "Finally, a framework that understands the art of computational sorcery. Outstanding work!", |
36 | | -// }, |
37 | | -// ]; |
38 | | - |
39 | | - |
40 | 4 | function TestimonialCarousel() { |
41 | 5 | const [currentIndex, setCurrentIndex] = useState(0); |
42 | 6 | const [isAnimating, setIsAnimating] = useState(false); |
|
0 commit comments