Skip to content

Commit 7233a58

Browse files
committed
feat: rsshub logo
1 parent 6f9fb5b commit 7233a58

File tree

1 file changed

+5
-1
lines changed
  • apps/renderer/src/pages/(main)/(layer)/(subview)/rsshub

1 file changed

+5
-1
lines changed

apps/renderer/src/pages/(main)/(layer)/(subview)/rsshub/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
import type { RSSHubModel } from "@follow/models"
1212
import { useTranslation } from "react-i18next"
1313

14+
import RSSHubIcon from "~/assets/rsshub-icon.png"
1415
import { whoami } from "~/atoms/user"
1516
import { useModalStack } from "~/components/ui/modal/stacked/hooks"
1617
import { useAuthQuery } from "~/hooks/common"
@@ -31,7 +32,10 @@ export function Component() {
3132

3233
return (
3334
<div className="relative flex w-full max-w-4xl flex-col items-center gap-8 px-4 pb-8 lg:pb-4">
34-
<div className="pt-12 text-2xl font-bold">{t("words.rsshub", { ns: "common" })}</div>
35+
<div className="motion-preset-shake center text-accent motion-delay-500">
36+
<img src={RSSHubIcon} className="mt-12 size-20" />
37+
</div>
38+
<div className="text-2xl font-bold">{t("words.rsshub", { ns: "common" })}</div>
3539
<div className="text-sm">{t("rsshub.description")}</div>
3640
<Button
3741
onClick={() =>

0 commit comments

Comments
 (0)