import type { UserAccount } from "@/lib/accounts/types" export const MOCK_USER_ACCOUNTS: UserAccount[] = [ { id: "eliott", email: "eliott.guillaumin@gmail.com", displayName: "Eliott Guillaumin", firstName: "Eliott", }, { id: "crippling", email: "redeathray@gmail.com", displayName: "C R I P P L I N G D E P R E S S I O N", firstName: "C R I P P L I N G", }, { id: "blacklight", email: "dev@bltv.fr", displayName: "Blacklight Dev", firstName: "Blacklight", }, { id: "techno", email: "technodelio@gmail.com", displayName: "Techno Delio", firstName: "Techno", }, ] export const DEFAULT_ACCOUNT_ID = MOCK_USER_ACCOUNTS[0]!.id export const STORAGE_USAGE = { percentUsed: 87, totalLabel: "15 Go", } as const