24 lines
536 B
Vue
24 lines
536 B
Vue
<script setup lang="ts">
|
|
useTitle("Home");
|
|
</script>
|
|
|
|
<template>
|
|
<main class="flex flex-col items-center justify-evenly">
|
|
<h1>Welcome!</h1>
|
|
<p>What are you here to see?</p>
|
|
<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>
|
|
<p>SERVICES</p>
|
|
<p>ABOUT</p>
|
|
</main>
|
|
</template>
|
|
|
|
<style scoped>
|
|
h1 {
|
|
font-size: 3rem;
|
|
}
|
|
</style>
|