mirror of
https://github.com/langgenius/dify-conversation.git
synced 2026-07-21 01:35:25 -04:00
feat: add details
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user