feat: test auth

This commit is contained in:
thomas
2024-03-29 21:29:52 +01:00
parent 73a81f4831
commit 18b1dc0a70
18 changed files with 1749 additions and 386 deletions

View File

@@ -1,19 +1,20 @@
---
import Default from '@astrojs/starlight/components/SiteTitle.astro';
import GitHubStats from './GitHubStats.svelte';
import MyIcon from './MyIcon.astro';
import SignUp from './github/SignUp.svelte';
import { Icon } from '@astrojs/starlight/components';
---
<Default {...Astro.props}>
<slot />
</Default>
<SignUp client:load />
<!--<GitHubStats client:load >-->
<!-- <MyIcon name="star" slot="star" />-->
<!-- <MyIcon name="fork" viewBox="0 0 16 16" slot="fork"/>-->
<!--</GitHubStats>-->
<SignUp client:only="svelte" >
<Icon name="github" slot="github" />
<MyIcon name="fullStar" slot="fullStar" viewBox="0 0 16 16" fill="#e3b341"/>
<MyIcon name="star" slot="star" viewBox="0 0 16 16"/>
<MyIcon name="fork" viewBox="0 0 16 16" slot="fork"/>
</SignUp>