From 3ad5b134278ce06eb280b0ead40b5eaf1fcae11c Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Tue, 10 Mar 2026 17:57:40 +0100 Subject: [PATCH] feat: add bsky logo --- src/components/SignInAtproto.vue | 27 +++++++++++++++++++++++++-- src/components/SignInGithub.vue | 14 +++++++------- src/components/WelcomeWorld.vue | 4 ++-- 3 files changed, 34 insertions(+), 11 deletions(-) diff --git a/src/components/SignInAtproto.vue b/src/components/SignInAtproto.vue index ff2fdd2..d71d706 100644 --- a/src/components/SignInAtproto.vue +++ b/src/components/SignInAtproto.vue @@ -5,6 +5,15 @@ import { useATProtoLogin } from "@/hooks/useATProtoLogin.hook" const { handle, isLoggedIn, signIn, signOut } = useATProtoLogin() +withDefaults( + defineProps<{ + withSignOut?: boolean + }>(), + { + withSignOut: true, + }, +) + const inputHandle = ref("") const onSignIn = () => { @@ -17,7 +26,9 @@ const onSignIn = () => { diff --git a/src/components/SignInGithub.vue b/src/components/SignInGithub.vue index 151aca4..98a458a 100644 --- a/src/components/SignInGithub.vue +++ b/src/components/SignInGithub.vue @@ -1,20 +1,20 @@