Updated .gitignore to ignore storybook static assets (#102)

*  Updated .gitignore to ignore storybook static assets

* 🏗️ Fixed cover-only config for CV detail panel

* 🏗️ Added stats to dashboard

* 🐯 Prowlarr integration WIP

* 🐯 Prowlarr settings form scaffold

* 🧲 Added a form for torrent search

* 🐯 Mocked a prowlarr call
This commit was merged in pull request #102.
This commit is contained in:
2024-02-23 16:29:13 -05:00
committed by GitHub
parent ad5fc0b8b3
commit ae04260f69
19 changed files with 240 additions and 81 deletions

View File

@@ -82,7 +82,17 @@ export const PullList = (): ReactElement => {
<div className="content">
<Header
headerContent="Discover"
subHeaderContent="Pull List aggregated for the week from League Of Comic Geeks"
subHeaderContent={
<span className="text-md">
Pull List aggregated for the week from{" "}
<span className="underline">
<a href="https://leagueofcomicgeeks.com/comics/new-comics">
League Of Comic Geeks
</a>
<i className="icon-[solar--arrow-right-up-outline] w-4 h-4" />
</span>
</span>
}
iconClassNames="fa-solid fa-binoculars mr-2"
link="/pull-list/all/"
/>
@@ -101,7 +111,10 @@ export const PullList = (): ReactElement => {
/>
{inputValue && (
<div className="text-sm">
Showing pull list for <span>{inputValue}</span>
Showing pull list for{" "}
<span className="inline-flex mb-2 items-center bg-slate-50 text-slate-800 text-xs font-medium px-2.5 py-1 rounded-md dark:text-slate-900 dark:bg-slate-400">
{inputValue}
</span>
</div>
)}
</div>