// create a 404 next js page using tailwind import Layout from '@/components/ui/Layout'; import { NextPage } from 'next'; import Head from 'next/head'; const NotFound: NextPage = () => { return ( 404 Page Not Found

404: Not Found

Sorry, the page you are looking for does not exist.

); }; export default NotFound;