Files
2026-03-18 15:53:54 -04:00

21 lines
316 B
Vue

<template>
<main class="splash">
<svg-wordmark />
</main>
</template>
<script setup>
import SvgWordmark from '@/components/svg/Wordmark.vue'
</script>
<style>
main.splash {
.svg-wordmark {
width: 70%;
height: auto;
margin: auto;
display: block;
}
}
</style>