mirror of
https://github.com/pockethost/pockethost.git
synced 2025-07-07 05:12:30 +00:00
16 lines
366 B
Svelte
16 lines
366 B
Svelte
<script>
|
|
export let hideLogoText = false
|
|
export let logoWidth = 'w-24'
|
|
</script>
|
|
|
|
<div class="flex items-center justify-center gap-4">
|
|
<img
|
|
src="/images/pockethost-cloud-logo.jpg"
|
|
class="mix-blend-lighten {logoWidth}"
|
|
alt="PocketHost Logo"
|
|
/>
|
|
<h1 class="text-white font-bold text-2xl {hideLogoText && 'sr-only'}">
|
|
Superadmin
|
|
</h1>
|
|
</div>
|