blackbirdchess-website-wip/src/routes/+page.svelte

16 lines
328 B
Svelte

<div class="container h-full">
<div class="h-full flex flex-row justify-center items-center">
<div class="content">
<img src="{bird}" alt="bird">
<p class="text-center text-3xl">We are building something great!</p>
</div>
</div>
</div>
<script>
import bird from '$lib/images/bird.png';
</script>
<style>
</style>