10 lines
347 B
Svelte
10 lines
347 B
Svelte
<script lang="ts">
|
|
export let username = 'userdata.username'
|
|
</script>
|
|
<div class="text-center">
|
|
<h1 class=" text-warning text-4xl">403</h1>
|
|
<span class="text-gray-500">The Profile of <strong class="text-xl text-warning">@{username}</strong> is not public!</span>
|
|
</div>
|
|
<div class=" my-4">
|
|
<img src="403.png" alt="forbidden"/>
|
|
</div>
|