lifetracker/apps/web/app/dashboard/not-found.tsx

8 lines
161 B
TypeScript

export default function NotFound() {
return (
<div className="flex size-full">
<div className="m-auto text-3xl">Not Found :(</div>
</div>
);
}