aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/not-found.tsx
blob: 64df220c27869b43967704b81be645121e25f155 (plain) (blame)
1
2
3
4
5
6
7
export default function NotFound() {
  return (
    <div className="flex size-full">
      <div className="m-auto text-3xl">Not Found :(</div>
    </div>
  );
}