design and responsive page 404 in dashboard and home

This commit is contained in:
Ehsan
2024-09-06 21:16:12 +03:30
parent c45a161fcb
commit cb41f926e2
9 changed files with 172 additions and 10 deletions
+12
View File
@@ -0,0 +1,12 @@
import Layout from '@/components/layout'
import NotFoundPage from '@/components/notFound'
function NotFound() {
return (
<Layout title='404' disableFooter={true}>
<NotFoundPage />
</Layout>
)
}
export default NotFound