public/pages/index.vue

20 lines
480 B
Vue
Raw Normal View History

2022-07-21 22:03:35 -04:00
<script setup lang="ts"></script>
2022-07-22 16:08:55 -04:00
<template>
2022-07-22 16:40:52 -04:00
<main class="flex flex-col items-center justify-evenly">
<h1>Welcome!</h1>
2022-07-22 17:03:59 -04:00
<p>What are you here to see?</p>
2022-07-22 16:40:52 -04:00
<div class="flex justify-around items-center w-full flex-wrap gap-y-10">
<HomeStatBox> Latest blog post </HomeStatBox>
<HomeStatBox>Latest story</HomeStatBox>
<HomeStatBox>Latest commit w/details</HomeStatBox>
</div>
2022-07-22 16:08:55 -04:00
</main>
</template>
<style scoped>
2022-07-22 16:40:52 -04:00
h1 {
font-size: 3rem;
2022-07-22 16:08:55 -04:00
}
</style>