diff options
| author | Fuwn <[email protected]> | 2023-11-19 03:53:07 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-19 03:53:07 -0800 |
| commit | 622c60b0fb88e3fbed35b7ca246a624f88243516 (patch) | |
| tree | 899ba056ff5e9786ffe52292ed8862d9952fa05f | |
| parent | feat(languages): language columns (diff) | |
| download | frontend-next-622c60b0fb88e3fbed35b7ca246a624f88243516.tar.xz frontend-next-622c60b0fb88e3fbed35b7ca246a624f88243516.zip | |
feat(api): remove fluff
| -rw-r--r-- | src/routes/api.svelte | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/routes/api.svelte b/src/routes/api.svelte index ae70e8b..cf4e571 100644 --- a/src/routes/api.svelte +++ b/src/routes/api.svelte @@ -34,21 +34,21 @@ SPDX-License-Identifier: GPL-3.0-only --> </svelte:head> <section> - <p>The Senpy Club API can be accessed at</p> - - <ul> - <li> - <a href="https://api.senpy.club" target="_blank">REST</a> - </li> - <li> - <a href="https://github.com/senpy-club/graphql-api" target="_blank"> - GraphQL, - </a> - <a href="https://graphql.senpy.club/playground" target="_blank" - >Playground</a - > - </li> - </ul> + <p> + The Senpy Club API can be accessed through <a + href="https://api.senpy.club" + target="_blank" + > + REST + </a> + and + <a href="https://github.com/senpy-club/graphql-api" target="_blank" + >GraphQL</a + > + (<a href="https://graphql.senpy.club/playground" target="_blank"> + Playground</a + >) + </p> {#if !complete} <p>Fetching API README ...</p> |