๐Ÿ“ฆ obafemitayor / newsletter-subscription-application

๐Ÿ“„ subscription-list-mock-data.ts ยท 79 lines
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
79import type { SubscriptionListItem } from '../../pages/subscription/types/types';

export const mockSubscriptions: SubscriptionListItem[] = [
  {
    first_name: 'John',
    last_name: 'Doe',
    work_email: 'john@example.com',
    category_names: ['Product updates']
  },
  {
    first_name: 'Jane',
    last_name: 'Smith',
    work_email: 'jane@example.com',
    category_names: ['Articles and market insights']
  }
];

export const page1Data = [
  {
    first_name: 'Alice',
    last_name: 'Brown',
    work_email: 'alice@example.com',
    category_names: ['Product updates']
  },
  {
    first_name: 'Bob',
    last_name: 'Wilson',
    work_email: 'bob@example.com',
    category_names: ['Articles and market insights']
  },
  {
    first_name: 'Charlie',
    last_name: 'Davis',
    work_email: 'charlie@example.com',
    category_names: ['Case studies']
  }
];

export const page2Data = [
  {
    first_name: 'David',
    last_name: 'Evans',
    work_email: 'david@example.com',
    category_names: ['Product updates']
  },
  {
    first_name: 'Eve',
    last_name: 'Franklin',
    work_email: 'eve@example.com',
    category_names: ['Articles and market insights']
  },
  {
    first_name: 'Frank',
    last_name: 'Green',
    work_email: 'frank@example.com',
    category_names: ['Case studies']
  }
];

export const page3Data = [
  {
    first_name: 'Grace',
    last_name: 'Harris',
    work_email: 'grace@example.com',
    category_names: ['Product updates']
  },
  {
    first_name: 'Henry',
    last_name: 'Irving',
    work_email: 'henry@example.com',
    category_names: ['Articles and market insights']
  },
  {
    first_name: 'Ivy',
    last_name: 'Jones',
    work_email: 'ivy@example.com',
    category_names: ['Case studies']
  }
];