Files
clean-cuts/pages/index.vue
BlossomiShymae 932434ff59 Update theme
2024-10-08 14:35:27 -05:00

19 lines
654 B
Vue

<template>
<div>
<div class="d-flex flex-column justify-content-center align-items-center gap-2" style="margin-top: 25%;"
data-aos="fade-down" data-aos-duration="1000">
<Card class="d-flex flex-column justify-content-center align-items-center">
<h1 class="display-4">
<img class="me-4" src="/favicon.png"/>
<TheTitle />
</h1>
<p>Your local League of Legends companion index.</p>
</Card>
</div>
</div>
</template>
<script setup lang="ts">
import MaterialIcon from '~/components/MaterialIcon.vue';
import TheTitle from '~/components/TheTitle.vue';
</script>