mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 18:20:47 +01:00
19 lines
654 B
Vue
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> |