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.
import LastWatched from "@/components/ui/last-watched";
export default function MyPage() {
return (
<div className="flex items-center justify-center p-8">
<LastWatched />
</div>
);
}