mediahub-fe/app/api/user/data.ts

16 lines
322 B
TypeScript
Raw Normal View History

2024-11-26 03:09:48 +00:00
import avatar3 from "@/public/images/avatar/avatar-3.png";
export const user = [
{
id: 1,
name: "dashtail",
image: avatar3,
password: "password",
email: "dashtail@codeshaper.net",
resetToken: null,
resetTokenExpiry: null,
profile: null,
},
];
export type User = (typeof user)[number];