Doc updates
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
Javier Feliz 2025-08-04 19:28:04 -04:00
parent 821e49288d
commit 76e3f07239
6 changed files with 12 additions and 5 deletions

3
.gitignore vendored
View File

@ -28,4 +28,5 @@ yarn-error.log
frankenphp
frankenphp-worker.php
/docs/.vitepress/cache
/docs/node_modules
/docs/node_modules
/docs/.vitepress/dist

View File

@ -85,6 +85,9 @@ class User extends Authenticatable
public function avatarUrl()
{
if (empty($this->avatar)) {
return null;
}
return route('user.avatar', ['path' => $this->avatar]);
}

View File

@ -19,7 +19,9 @@ hero:
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
---
<img src="/screenshots/dashboard.png" alt="Banner" class="w-full h-auto !mb-8">
<div class="dark:bg-white/60 bg-black p-1 rounded-md shadow-sm !mb-8">
<img src="/screenshots/dashboard-app-edit.png" alt="Banner" class="w-full h-auto">
</div>
**AuthentiKate** is a sleek, self-hosted OpenID Connect (OIDC) provider built with Laravel. It's designed for developers and homelabbers who want full control over their identity infrastructure — without the bloat.

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

View File

@ -42,7 +42,8 @@
<!-- Desktop User Menu -->
<flux:dropdown position="top" align="end">
<flux:profile class="cursor-pointer" :initials="auth()->user()->initials()" />
<flux:profile class="cursor-pointer" :avatar="auth()->user()->avatarUrl()"
:initials="auth()->user()->initials()" />
<flux:menu>
<flux:menu.radio.group>

View File

@ -13,8 +13,8 @@
<div class="flex items-center justify-between">
@can('view', $app)
<flux:modal.trigger name="app-info">
<flux:button icon="eye" variant="subtle" size="sm" inset class="cursor-pointer"
x-on:click="$dispatch('appinfo', {id: {{$app->id}}})" />
<flux:button icon="eye" data-testid="view-app-{{$app->id}}" variant="subtle" size="sm" inset
class="cursor-pointer" x-on:click="$dispatch('appinfo', {id: {{$app->id}}})" />
</flux:modal.trigger>
@endcan
<flux:button wire:click="confirmDelete({{$app->id}})" icon="trash" variant="subtle" size="sm" inset