Created
July 15, 2026 09:35
-
-
Save carefree-ladka/f39dfc6b2882eb718e2e299fde8d150d to your computer and use it in GitHub Desktop.
mock-users
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const users = [ | |
| { | |
| id: 1, | |
| name: "John Doe", | |
| email: "john.doe@example.com", | |
| age: 28, | |
| gender: "Male", | |
| role: "Frontend Developer", | |
| city: "New York", | |
| country: "USA", | |
| isActive: true, | |
| avatar: "https://i.pravatar.cc/150?img=1", | |
| }, | |
| { | |
| id: 2, | |
| name: "Emma Wilson", | |
| email: "emma.wilson@example.com", | |
| age: 25, | |
| gender: "Female", | |
| role: "UI Designer", | |
| city: "London", | |
| country: "UK", | |
| isActive: true, | |
| avatar: "https://i.pravatar.cc/150?img=2", | |
| }, | |
| { | |
| id: 3, | |
| name: "Michael Brown", | |
| email: "michael.brown@example.com", | |
| age: 32, | |
| gender: "Male", | |
| role: "Backend Developer", | |
| city: "Toronto", | |
| country: "Canada", | |
| isActive: false, | |
| avatar: "https://i.pravatar.cc/150?img=3", | |
| }, | |
| { | |
| id: 4, | |
| name: "Sophia Martinez", | |
| email: "sophia.m@example.com", | |
| age: 27, | |
| gender: "Female", | |
| role: "Product Manager", | |
| city: "Madrid", | |
| country: "Spain", | |
| isActive: true, | |
| avatar: "https://i.pravatar.cc/150?img=4", | |
| }, | |
| { | |
| id: 5, | |
| name: "David Lee", | |
| email: "david.lee@example.com", | |
| age: 30, | |
| gender: "Male", | |
| role: "DevOps Engineer", | |
| city: "Singapore", | |
| country: "Singapore", | |
| isActive: true, | |
| avatar: "https://i.pravatar.cc/150?img=5", | |
| }, | |
| { | |
| id: 6, | |
| name: "Olivia Taylor", | |
| email: "olivia.t@example.com", | |
| age: 24, | |
| gender: "Female", | |
| role: "QA Engineer", | |
| city: "Sydney", | |
| country: "Australia", | |
| isActive: false, | |
| avatar: "https://i.pravatar.cc/150?img=6", | |
| }, | |
| { | |
| id: 7, | |
| name: "James Anderson", | |
| email: "james.anderson@example.com", | |
| age: 35, | |
| gender: "Male", | |
| role: "Tech Lead", | |
| city: "San Francisco", | |
| country: "USA", | |
| isActive: true, | |
| avatar: "https://i.pravatar.cc/150?img=7", | |
| }, | |
| { | |
| id: 8, | |
| name: "Ava Thomas", | |
| email: "ava.thomas@example.com", | |
| age: 29, | |
| gender: "Female", | |
| role: "Full Stack Developer", | |
| city: "Berlin", | |
| country: "Germany", | |
| isActive: true, | |
| avatar: "https://i.pravatar.cc/150?img=8", | |
| }, | |
| { | |
| id: 9, | |
| name: "William Scott", | |
| email: "william.scott@example.com", | |
| age: 31, | |
| gender: "Male", | |
| role: "Software Engineer", | |
| city: "Dublin", | |
| country: "Ireland", | |
| isActive: true, | |
| avatar: "https://i.pravatar.cc/150?img=9", | |
| }, | |
| { | |
| id: 10, | |
| name: "Mia Johnson", | |
| email: "mia.johnson@example.com", | |
| age: 26, | |
| gender: "Female", | |
| role: "Data Analyst", | |
| city: "Amsterdam", | |
| country: "Netherlands", | |
| isActive: false, | |
| avatar: "https://i.pravatar.cc/150?img=10", | |
| }, | |
| ]; | |
| export default users; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment