1export default function NotFound() { 2 return ( 3 <section class="p-8 text-gray-700"> 4 <h1 class="font-bold text-2xl">404: Not Found</h1> 5 <p class="mt-4">It's gone 😞</p> 6 </section> 7 ); 8}