feat: show GitHub sign-in when repo is not accessible

Adds a message + sign-in button in FluxNote when the readme resolves
to null (private/unauthorized repo), and on the SpaceCowboy 404 page.
This commit is contained in:
Julien Calixte
2026-04-27 10:12:09 +02:00
parent 28ca9a17a9
commit 78de5e280f
2 changed files with 18 additions and 1 deletions

View File

@@ -1,4 +1,6 @@
<script lang="ts" setup></script>
<script lang="ts" setup>
import SignInGithub from "@/components/SignInGithub.vue"
</script>
<template>
<main class="space-cowboy content">
@@ -43,6 +45,7 @@
<router-link class="button is-links" :to="{ name: 'Home' }"
>return to homepage</router-link
>
<sign-in-github />
</main>
</template>