diff --git a/components/error/index.tsx b/components/error/index.tsx index e6e487a..55ed03d 100644 --- a/components/error/index.tsx +++ b/components/error/index.tsx @@ -1,11 +1,14 @@ 'use client' import React, { FC } from 'react' -import styles from './style.module.scss' interface ErrorPageProps {} const ErrorPage: FC = ({}) => { - return
Error
+ return ( +
+ We are sorry, but something went wrong. +
+ ) } export default ErrorPage