1 2 3 4 5 6 7 8
export default function NotFound() { return ( <section> <h1>404: Not Found</h1> <p>It's gone 😞</p> </section> ); }