import { User } from "./database.schema"; export const sampleUsers: User[] = [ { id: 2, username: "john.doe", email: "john.doe@example.com", firstName: "John", lastName: "Doe", password: "password123", // You should hash this in production isDeleted: false, }, { id: 3, username: "jane.smith", email: "jane.smith@example.com", firstName: "Jane", lastName: "Smith", password: "password123", // You should hash this in production isDeleted: false, }, { id: 4, username: "mike.johnson", email: "mike.johnson@example.com", firstName: "Mike", lastName: "Johnson", password: "password123", // You should hash this in production isDeleted: false, }, { id: 5, username: "sarah.wilson", email: "sarah.wilson@example.com", firstName: "Sarah", lastName: "Wilson", password: "password123", // You should hash this in production isDeleted: false, }, { id: 6, username: "david.brown", email: "david.brown@example.com", firstName: "David", lastName: "Brown", password: "password123", // You should hash this in production isDeleted: false, }, { id: 7, username: "emma.davis", email: "emma.davis@example.com", firstName: "Emma", lastName: "Davis", password: "password123", // You should hash this in production isDeleted: false, }, { id: 8, username: "alex.martinez", email: "alex.martinez@example.com", firstName: "Alex", lastName: "Martinez", password: "password123", // You should hash this in production isDeleted: false, }, { id: 9, username: "lisa.garcia", email: "lisa.garcia@example.com", firstName: "Lisa", lastName: "Garcia", password: "password123", // You should hash this in production isDeleted: false, }, { id: 10, username: "robert.taylor", email: "robert.taylor@example.com", firstName: "Robert", lastName: "Taylor", password: "password123", // You should hash this in production isDeleted: false, }, { id: 11, username: "maria.rodriguez", email: "maria.rodriguez@example.com", firstName: "Maria", lastName: "Rodriguez", password: "password123", // You should hash this in production isDeleted: false, }, ];