-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestData.ts
49 lines (47 loc) · 1.33 KB
/
testData.ts
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
[
{
name: "John Doe",
serviceType: "Electrician",
location: "123 Main Street, Springfield, IL 62704",
email: "[email protected]",
phone: "123-456-7890",
review: "Excellent service! Very professional and timely.",
vouched: true,
},
{
name: "Jane Smith",
serviceType: "Plumber",
location: "456 Oak Drive, Beverly Hills, CA 90210",
email: "[email protected]",
phone: "555-678-1234",
review: "Reliable and did a great job. Highly recommended.",
vouched: true,
},
{
name: "Michael Brown",
serviceType: "Carpenter",
location: "789 Elm Street, Austin, TX 78701",
email: "[email protected]",
phone: "444-555-6666",
review: "Good quality work, but communication could be improved.",
vouched: false,
},
{
name: "Susan Wilson",
serviceType: "Painter",
location: "321 Maple Avenue, New York, NY 10001",
email: "[email protected]",
phone: "777-888-9999",
review: "Amazing work! Went above and beyond expectations.",
vouched: true,
},
{
name: "David Jones",
serviceType: "Landscaper",
location: "654 Pine Road, Miami, FL 33101",
email: "[email protected]",
phone: "666-777-8888",
review: "Satisfactory work, but took longer than expected.",
vouched: false,
},
];