From 2799da6cbbc63a8c146c84e04922869a40687ef7 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 4 Jan 2024 09:18:38 -0800 Subject: feat(tools): move all to cards --- src/routes/tools/+page.svelte | 88 ++++++++++++++++++++++--------------------- 1 file changed, 45 insertions(+), 43 deletions(-) (limited to 'src/routes') diff --git a/src/routes/tools/+page.svelte b/src/routes/tools/+page.svelte index e677d183..4d2da5cf 100644 --- a/src/routes/tools/+page.svelte +++ b/src/routes/tools/+page.svelte @@ -69,54 +69,56 @@ -{#if !Object.keys(tools).includes(tool)} - +
+ {#if !Object.keys(tools).includes(tool)} + -

Tool not found.

+

Tool not found.

-
- Did you mean " (tool = suggestion)} - > - {suggestion === '...' ? '...' : tools[suggestion]}"? -
-{:else} - +
+ Did you mean " (tool = suggestion)} + > + {suggestion === '...' ? '...' : tools[suggestion]}"? +
+ {:else} + - {#if tool === 'default'} -

Select a tool to continue.

+ {#if tool === 'default'} +

Select a tool to continue.

-
    - {#each Object.keys(tools) as t} - {#if t !== 'default'} -
  • - (tool = t)}>{tools[t].name} - {#if tools[t].description} -
    {tools[t].description}
    - {/if} -
  • - {/if} - {/each} -
+
    + {#each Object.keys(tools) as t} + {#if t !== 'default'} +
  • + (tool = t)}>{tools[t].name} + {#if tools[t].description} +
    {tools[t].description}
    + {/if} +
  • + {/if} + {/each} +
+ +

-

Have any requests for cool tools that you think others might find useful? Send a message to @fuwn on AniList! -

- {:else if tool === 'activity_history'} - - {:else if tool === 'wrapped'} - - {:else if tool === 'discussions'} - - {:else if tool === 'birthdays'} - - {:else if tool === 'sequel_spy'} - - {:else if tool === 'random_follower'} - + {:else if tool === 'activity_history'} + + {:else if tool === 'wrapped'} + + {:else if tool === 'discussions'} + + {:else if tool === 'birthdays'} + + {:else if tool === 'sequel_spy'} + + {:else if tool === 'random_follower'} + + {/if} {/if} -{/if} +
-- cgit v1.2.3