public/pages/index.vue
eggy bd852ba906 feat: add site box
also make mobile easier to see
2022-08-08 17:49:35 -04:00

27 lines
557 B
Vue

<script setup lang="ts">
import Services from "@/components/index/services.vue";
import About from "@/components/index/about.vue";
useTitle("Home");
</script>
<template>
<main class="flex flex-col items-center justify-around gap-8">
<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">
<BlogStatBox />
<StoryStatBox />
<CommitStatBox />
</div>
<Services />
<About />
</main>
</template>
<style scoped>
h1 {
font-size: 3rem;
}
</style>