Skip to content

Commit 4aa9e31

Browse files
committed
changes
1 parent 58584a6 commit 4aa9e31

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

src/data/userProfiles.ts

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
11
// Static user profile data for test/demo use
22
import { getAssetPath } from '../lib/assetUtils';
33

4-
export const userProfiles = [];
4+
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

Comments
 (0)