Skip to content

Commit

Permalink
Add useful links
Browse files Browse the repository at this point in the history
  • Loading branch information
schlagtim committed Feb 18, 2024
1 parent fe5b026 commit 77cf54b
Showing 1 changed file with 41 additions and 3 deletions.
44 changes: 41 additions & 3 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,37 @@
<div class="app">
<header>
<h1>SD-JWT</h1>

<p>Tool for SD-JWT VC inspection</p>
<span>Tool for SD-JWT VC inspection</span>
<p class="links">
<span><a href="https://datatracker.ietf.org/doc/html/rfc7519">JWT</a> </span>
<span
><a
href="https://drafts.oauth.net/oauth-selective-disclosure-jwt/draft-ietf-oauth-selective-disclosure-jwt.html"
>SD-JWT</a
>
| <a href="https://github.com/oauth-wg/oauth-selective-disclosure-jwt">(GitHub)</a></span
>
<span>
<a href="https://drafts.oauth.net/oauth-sd-jwt-vc/draft-ietf-oauth-sd-jwt-vc.html"
>SD-JWT-VC</a
>
| <a href="https://github.com/oauth-wg/oauth-sd-jwt-vc">(GitHub)</a>
</span>
<span>
<a
href="https://vcstuff.github.io/draft-ietf-oauth-status-list/draft-ietf-oauth-status-list.html"
>OAuth Status List</a
>
| <a href="https://github.com/vcstuff/draft-ietf-oauth-status-list">(GitHub)</a>
</span>
</p>
</header>

<main>
<slot />
</main>

<footer><p></p></footer>
<footer><p><a href="https://github.com/schlagtim/sd-jwt-tool">SD-JWT Tool GitHub</a></p></footer>
</div>

<style>
Expand All @@ -24,6 +46,16 @@
width: 100%;
}
.links {
display: flex;
flex-direction: row;
justify-content: space-around;
width: 70%;
text-align: center;
margin-bottom: 2rem;
}
main {
display: flex;
flex: 1;
Expand All @@ -45,4 +77,10 @@
justify-content: center;
align-items: center;
}
@media screen and (max-width: 600px) {
.links {
flex-direction: column;
}
}
</style>

0 comments on commit 77cf54b

Please sign in to comment.