// 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

Error: 404

Page Not Found

); }; export default NotFound;