import type { FC } from 'hono/jsx'; import { gitDate, gitHash } from '@/utils/git-hash'; import { Layout } from '@/views/layout'; const Index: FC<{ requestPath: string; message: string; errorRoute: string; nodeVersion: string; }> = ({ requestPath, message, errorRoute, nodeVersion }) => (
RSSHub

Looks like something went wrong

Helpful Information

Error Message:
{message}

Route: {errorRoute}

Full Route: {requestPath}

Node Version: {nodeVersion}

Git Hash: {gitHash}

Git Date: {gitDate?.toUTCString()}

Report

After carefully reading the{' '} document , if you think this is a bug of RSSHub, please{' '} submit an issue {' '} on GitHub.

在仔细阅读 文档 后,如果你认为这是 RSSHub 的 bug,请在 GitHub{' '} 提交 issue

Community

You can also join our{' '} Telegram group , or follow our{' '} Telegram channel {' '} and{' '} Twitter {' '} to get community support and news.

你也可以加入我们的{' '} Telegram 群组 ,或关注我们的{' '} Telegram 频道 和{' '} Twitter {' '} 获取社区支持和新闻。

github telegram group telegram channel X

Please consider{' '} sponsoring {' '} to help keep this open source project alive.

Made with ❤️ by{' '} DIYgod {' '} and{' '} Contributors {' '} under AGPL-3.0 License.

); export default Index;