simkl last watched

Shows the last movie, show or anime I watched on Simkl. Backed by an Express service that pulls poster art from TMDB and caches the result for five minutes.

DEPENDENCIES
INTERACTION TYPE
Shows poster art from TMDB
Refreshes every 5 minutes
Handles movies and TV episodes
HOW TO USE
import LastWatched from "@/components/ui/last-watched";

export default function MyPage() {
  return (
    <div className="flex items-center justify-center p-8">
      <LastWatched />
    </div>
  );
}