All files / react-base/src/config user.ts

0% Statements 0/43
0% Branches 0/1
0% Functions 0/1
0% Lines 0/43

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53                                                                                                         
export const CURRENT_USER = {
  name: "Admin User",
  email: "admin@company.com",
  initials: "AU",
  avatarUrl: "https://ui-avatars.com/api/?name=Admin+User&background=0D8ABC&color=fff&size=128",
} as const;
 
export type NotificationItem = {
  id: string;
  title: string;
  description: string;
  time: string;
  read: boolean;
};
 
export const MOCK_NOTIFICATIONS: NotificationItem[] = [
  {
    id: "1",
    title: "New user registered",
    description: "Mia Chen joined the workspace as Viewer.",
    time: "2 min ago",
    read: false,
  },
  {
    id: "2",
    title: "Deployment succeeded",
    description: "Production release v2.4.1 finished without errors.",
    time: "1 hour ago",
    read: false,
  },
  {
    id: "3",
    title: "Storage threshold",
    description: "Workspace storage is at 82% capacity.",
    time: "3 hours ago",
    read: false,
  },
  {
    id: "4",
    title: "Weekly report ready",
    description: "Your analytics summary for last week is available.",
    time: "Yesterday",
    read: true,
  },
  {
    id: "5",
    title: "Password updated",
    description: "Your account password was changed successfully.",
    time: "2 days ago",
    read: true,
  },
];