export interface User { username; bio?; verified?; followersCount?; profilePicture?; coverPhoto?; } export interface Post { id; username; content; media?; profilePicture?; createdAt; likes; verified?; } export type View = 'home' | 'search' | 'post' | 'profile' | 'auth';