feat: Update avatar URLs in Avatar and LoginModal components #68
@ -17,6 +17,6 @@
|
|||||||
if (user.avatar) {
|
if (user.avatar) {
|
||||||
return user.avatar;
|
return user.avatar;
|
||||||
}
|
}
|
||||||
return 'https://avatar.iran.liara.run/username?username=' + user.name;
|
return 'https://i.pravatar.cc/150?u=' + user.name;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -29,15 +29,15 @@
|
|||||||
|
|
||||||
const users: User[] = [
|
const users: User[] = [
|
||||||
{ id: 1, name: 'John Doe', avatar: 'https://img.daisyui.com/images/stock/photo-1534528741775-53994a69daeb.webp' },
|
{ id: 1, name: 'John Doe', avatar: 'https://img.daisyui.com/images/stock/photo-1534528741775-53994a69daeb.webp' },
|
||||||
{ id: 2, name: 'Jane Doe', avatar: 'https://avatar.iran.liara.run/public' },
|
{ id: 2, name: 'Jane Doe', avatar: 'https://i.pravatar.cc/150?u=JANEDOE728' },
|
||||||
{ id: 3, name: 'Michel Moulin', avatar: '' },
|
{ id: 3, name: 'Michel Moulin' },
|
||||||
{ id: 4, name: 'Jean Paris', avatar: '' },
|
{ id: 4, name: 'Jean Paris' },
|
||||||
{ id: 5, name: 'Marie Dupont', avatar: '' },
|
{ id: 5, name: 'Marie Dupont' },
|
||||||
{ id: 6, name: 'Émilie Fournier', avatar: '' },
|
{ id: 6, name: 'Émilie Fournier' },
|
||||||
{ id: 7, name: 'Pierre Lefevre', avatar: '' },
|
{ id: 7, name: 'Pierre Lefevre' },
|
||||||
{ id: 8, name: 'Sophie Lemoine', avatar: '' },
|
{ id: 8, name: 'Sophie Lemoine' },
|
||||||
{ id: 9, name: 'Lucie Simon', avatar: '' },
|
{ id: 9, name: 'Lucie Simon' },
|
||||||
{ id: 10, name: 'Kevin Boucher', avatar: '' },
|
{ id: 10, name: 'Kevin Boucher' },
|
||||||
];
|
];
|
||||||
|
|
||||||
const loginModal = useTemplateRef('login_modal');
|
const loginModal = useTemplateRef('login_modal');
|
||||||
|
Loading…
Reference in New Issue
Block a user