feat: add details

This commit is contained in:
crazywoola
2023-06-21 17:24:45 +08:00
parent 32908f64fe
commit 71c2fcf00b
+5 -2
View File
@@ -1,11 +1,14 @@
'use client'
import React, { FC } from 'react'
import styles from './style.module.scss'
interface ErrorPageProps {}
const ErrorPage: FC<ErrorPageProps> = ({}) => {
return <div className={styles.errors}>Error</div>
return (
<div className='flex w-full min-h-screen items-center justify-center text-xs text-red-600'>
We are sorry, but something went wrong.
</div>
)
}
export default ErrorPage