1 2 3 4 5 6 7 8 9
"use client"; export default function Error() { return ( <div className="flex size-full"> <div className="m-auto text-3xl">Something went wrong</div> </div> ); }