mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-09 14:40:23 +08:00
112 lines
6.3 KiB
TypeScript
112 lines
6.3 KiB
TypeScript
import type { FC } from 'hono/jsx';
|
||
|
||
import { gitHash, gitDate } from '@/utils/git-hash';
|
||
|
||
const Layout: FC = (props) => (
|
||
<html>
|
||
<head>
|
||
<title>Welcome to RSSHub!</title>
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
<style>
|
||
{`
|
||
details::-webkit-scrollbar {
|
||
width: 0.25rem;
|
||
}
|
||
details::-webkit-scrollbar-thumb {
|
||
border-radius: 0.125rem;
|
||
background-color: #e4e4e7;
|
||
}
|
||
details::-webkit-scrollbar-thumb:hover {
|
||
background-color: #a1a1aa;
|
||
}`}
|
||
</style>
|
||
</head>
|
||
<body className="antialiased text-zinc-700">{props.children}</body>
|
||
</html>
|
||
);
|
||
|
||
const Index: FC<{
|
||
requestPath: string;
|
||
message: string;
|
||
errorRoute: string;
|
||
nodeVersion: string;
|
||
}> = ({
|
||
requestPath,
|
||
message,
|
||
errorRoute,
|
||
nodeVersion,
|
||
}) => (
|
||
<Layout>
|
||
<div
|
||
className="pointer-events-none absolute w-full h-screen"
|
||
style={{
|
||
backgroundImage: `url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAzMiAzMicgd2lkdGg9JzMyJyBoZWlnaHQ9JzMyJyBmaWxsPSdub25lJyBzdHJva2U9J3JnYigxNSAyMyA0MiAvIDAuMDQpJz48cGF0aCBkPSdNMCAuNUgzMS41VjMyJy8+PC9zdmc+')`,
|
||
maskImage: 'linear-gradient(transparent, black, transparent)',
|
||
}}
|
||
></div>
|
||
<div className="w-full h-screen flex items-center justify-center flex-col space-y-4">
|
||
<img className="grayscale" src="/logo.png" alt="RSSHub" width="100" loading="lazy" />
|
||
<h1 className="text-4xl font-bold">
|
||
Looks like something went wrong
|
||
</h1>
|
||
<div className="text-left w-[800px] space-y-6 !mt-10">
|
||
<div className="space-y-2">
|
||
<p className="mb-2 font-bold">Helpful Information</p>
|
||
<p className="message">Error Message:<br/><code className="mt-2 block max-h-28 overflow-auto bg-zinc-100 align-bottom w-fit details">{message}</code></p>
|
||
<p className="message">Route: <code className="ml-2 bg-zinc-100">{errorRoute}</code></p>
|
||
<p className="message">Full Route: <code className="ml-2 bg-zinc-100">{requestPath}</code></p>
|
||
<p className="message">Node Version: <code className="ml-2 bg-zinc-100">{nodeVersion}</code></p>
|
||
<p className="message">Git Hash: <code className="ml-2 bg-zinc-100">{gitHash}</code></p>
|
||
<p className="message">Git Date: <code className="ml-2 bg-zinc-100">{gitDate?.toUTCString()}</code></p>
|
||
</div>
|
||
<div>
|
||
<p className="mb-2 font-bold">Report</p>
|
||
<p>After carefully reading the <a className="text-[#F5712C]" href="https://docs.rsshub.app/" target="_blank">document</a>, if you think this is a bug of RSSHub, please <a className="text-[#F5712C]" href="https://github.com/DIYgod/RSSHub/issues/new?assignees=&labels=RSS+bug&template=bug_report_en.yml" target="_blank">submit an issue</a> on GitHub.</p>
|
||
<p>在仔细阅读<a className="text-[#F5712C]" href="https://docs.rsshub.app/zh/" target="_blank">文档</a>后,如果你认为这是 RSSHub 的 bug,请在 GitHub <a className="text-[#F5712C]" href="https://github.com/DIYgod/RSSHub/issues/new?assignees=&labels=RSS+bug&template=bug_report_zh.yml" target="_blank">提交 issue</a>。</p>
|
||
</div>
|
||
<div>
|
||
<p className="mb-2 font-bold">Community</p>
|
||
<p>You can also join our <a className="text-[#F5712C]" target="_blank" href="https://t.me/rsshub">Telegram group</a>, or follow our <a className="text-[#F5712C]" target="_blank" href="https://t.me/awesomeRSSHub">Telegram channel</a> and <a target="_blank" href="https://twitter.com/intent/follow?screen_name=_RSSHub" className="text-[#F5712C]">Twitter</a> to get community support and news.</p>
|
||
<p>你也可以加入我们的 <a className="text-[#F5712C]" target="_blank" href="https://t.me/rsshub">Telegram 群组</a>,或关注我们的 <a className="text-[#F5712C]" target="_blank" href="https://t.me/awesomeRSSHub">Telegram 频道</a>和 <a target="_blank" href="https://twitter.com/intent/follow?screen_name=_RSSHub" className="text-[#F5712C]">Twitter</a> 获取社区支持和新闻。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div className="absolute bottom-10 text-center w-full text-sm font-medium space-y-2">
|
||
<p className="space-x-4">
|
||
<a target="_blank" href="https://github.com/DIYgod/RSSHub">
|
||
<img className="inline" src="https://icons.ly/github/_/fff" alt="github" width="20" height="20" />
|
||
</a>
|
||
<a target="_blank" href="https://t.me/rsshub">
|
||
<img className="inline" src="https://icons.ly/telegram" alt="telegram group" width="20" height="20" />
|
||
</a>
|
||
<a target="_blank" href="https://t.me/awesomeRSSHub">
|
||
<img className="inline" src="https://icons.ly/telegram" alt="telegram channel" width="20" height="20" />
|
||
</a>
|
||
<a target="_blank" href="https://twitter.com/intent/follow?screen_name=_RSSHub" className="text-[#F5712C]">
|
||
<img className="inline" src="https://icons.ly/twitter" alt="github" width="20" height="20" />
|
||
</a>
|
||
</p>
|
||
<p className="!mt-6">
|
||
Please consider{' '}
|
||
<a target="_blank" href="https://docs.rsshub.app/support" className="text-[#F5712C]">
|
||
sponsoring
|
||
</a>{' '}
|
||
to help keep this open source project alive.
|
||
</p>
|
||
<p>
|
||
Made with ❤️ by{' '}
|
||
<a target="_blank" href="https://diygod.cc" className="text-[#F5712C]">
|
||
DIYgod
|
||
</a>{' '}
|
||
and{' '}
|
||
<a target="_blank" href="https://github.com/DIYgod/RSSHub/graphs/contributors" className="text-[#F5712C]">
|
||
Contributors
|
||
</a>{' '}
|
||
under MIT License.
|
||
</p>
|
||
</div>
|
||
</Layout>
|
||
);
|
||
|
||
export default Index;
|