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

Error: 404

Page Not Found

); }; export default NotFound;