mirror of
https://github.com/pockethost/pockethost.git
synced 2025-06-06 06:06:45 +00:00
18 lines
399 B
Svelte
18 lines
399 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"
|
|
width="450"
|
|
height="450"
|
|
class="mix-blend-lighten {logoWidth}"
|
|
alt="PocketHost Logo"
|
|
/>
|
|
<h1 class="text-white font-bold text-2xl {hideLogoText && 'sr-only'}">
|
|
PocketHost
|
|
</h1>
|
|
</div>
|