We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58584a6 commit 4aa9e31Copy full SHA for 4aa9e31
src/data/userProfiles.ts
@@ -1,4 +1,26 @@
1
// Static user profile data for test/demo use
2
import { getAssetPath } from '../lib/assetUtils';
3
4
-export const userProfiles = [];
+export const userProfiles = [
5
+ {
6
+ userId: 1,
7
+ email: 'demo1@example.com',
8
+ password: 'Qw!@d..**~cwcw',
9
+ name: 'Demo One',
10
+ avatar: getAssetPath('/static/avatars/demo1.svg')
11
+ },
12
13
+ userId: 2,
14
+ email: 'demo2@example.com',
15
+ password: '@qqwdSC1eEem__o12',
16
+ name: 'Demo Two',
17
+ avatar: getAssetPath('/static/avatars/demo2.svg')
18
19
20
+ userId: 3,
21
+ email: 'testuser@example.com',
22
+ password: 'test!!1-23Z~ww',
23
+ name: 'Test User',
24
+ avatar: getAssetPath('/static/avatars/testuser.svg')
25
+ }
26
+];
0 commit comments