added working profile page. set up settings page

This commit is contained in:
Edward Tirado Jr 2025-07-08 00:37:10 -05:00
parent d1f51177b3
commit bfed1c892a
6 changed files with 55 additions and 50 deletions

8
src/types/userProfile.ts Normal file
View file

@ -0,0 +1,8 @@
import type { MovieList } from "~/types/movielist";
export type UserProfile = {
name: string;
username: string;
date_joined: string;
lists: MovieList[];
};