-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.mjs
112 lines (111 loc) · 3.99 KB
/
data.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import AlliedLogo from './components/icons/branding/clients/Allied';
import IMAALogo from './components/icons/branding/clients/IMAA';
import LVolt from './components/icons/branding/clients/LVolt';
import TRDLogo from './components/icons/branding/clients/TRD';
export const testimonials = [
{
logo: <LVolt />,
name: 'Theodore M',
company: 'LVolt',
testimonial: 'Working with DreamsByte has been an absolute game-changer for our business. They helped us improve our online presence and boost our brand recognition.',
reporturl: null
},
{
logo: <IMAALogo />,
name: 'Christopher K',
company: 'IMAA',
testimonial: 'DreamsByte was very patient and flexible in incorporating our evolving requirements. Their expertise helped us achieve exactly what we needed.',
reporturl: null
},
{
logo: <TRDLogo />,
name: 'Val Addison, Founder',
company: 'TRD',
testimonial: "DreamsByte delivered a clean, user-friendly website that our community loves. Their attention to detail made the whole process seamless.",
reporturl: null
},
{
logo: <AlliedLogo />,
name: 'Richard',
company: 'Allied Construction',
testimonial: "The B2B portal DreamsByte built is exactly what we needed. It's more efficient than our old system and delivers great value.",
reporturl: null
},
{
logo: null,
name: 'Frankie B',
company: 'Pelican Apps',
testimonial: 'Great team to work with, very helpful and excellent at knowledge sharing throughout the project.',
reporturl: null
},
{
logo: null,
name: 'Elliott C',
company: 'Relativity Labs',
testimonial: 'Delivered the site quickly meeting all requirements. Responsive to revision requests and helped keep the project on schedule.',
reporturl: null
},
{
logo: null,
name: 'Beth O',
company: 'Agency Project',
testimonial: 'Professional service with quick turnaround time. Very responsive to feedback and excellent at implementing requested changes.',
reporturl: null
},
{
logo: null,
name: 'Dele Aden',
company: 'Delta3',
testimonial: 'Excellent communication throughout the project. Delivered high-quality work on time and was very accommodating with revisions.',
reporturl: null
},
{
logo: null,
name: 'Andrea H',
company: 'Helping Hand',
testimonial: 'Working with DreamsByte was excellent! They understood our vision and quickly delivered a product that exceeded expectations.',
reporturl: null
},
{
logo: null,
name: 'Doc',
company: 'Electric Doctors',
testimonial: 'Outstanding communication and implementation. They helped define our goals and delivered secure, effective solutions.',
reporturl: null
},
{
logo: null,
name: 'Amogh G',
company: null,
testimonial: 'Excellent JavaScript expertise and teaching ability. Efficient work with competitive pricing.',
reporturl: null
},
{
logo: null,
name: 'Mila E',
company: null,
testimonial: 'Built a gorgeous, fast-loading website from scratch. Listened to feedback and delivered exactly what we needed.',
reporturl: null
},
{
logo: null,
name: 'Leo Lukas',
company: '',
testimonial: 'Delivered clean, efficient code with amazing loading speeds. Excellent development work.',
reporturl: null
},
{
logo: null,
name: 'Siddharth P',
company: '',
testimonial: 'Exceptional service and outstanding results. Highly recommended.',
reporturl: null
},
{
logo: null,
name: 'Lewis A',
company: '',
testimonial: 'Professional service with great attention to detail. Very satisfied with the results.',
reporturl: null
}
];