2022-07-22 17:16:27 -04:00
|
|
|
<script setup lang="ts">
|
2022-08-07 21:25:30 -04:00
|
|
|
import Services from "@/components/index/services.vue";
|
|
|
|
import About from "@/components/index/about.vue";
|
|
|
|
|
2022-08-10 11:40:02 -04:00
|
|
|
definePageMeta({ layout: "withtop" });
|
2022-08-07 11:37:29 -04:00
|
|
|
useTitle("Home");
|
2022-07-22 17:16:27 -04:00
|
|
|
</script>
|
2022-07-21 22:03:35 -04:00
|
|
|
|
2022-07-22 16:08:55 -04:00
|
|
|
<template>
|
2022-08-07 21:25:30 -04:00
|
|
|
<main class="flex flex-col items-center justify-around gap-8">
|
2022-07-22 16:40:52 -04:00
|
|
|
<h1>Welcome!</h1>
|
2022-07-22 17:03:59 -04:00
|
|
|
<p>What are you here to see?</p>
|
2022-08-10 10:56:49 -04:00
|
|
|
<div
|
|
|
|
class="flex justify-around items-stretch w-full flex-wrap gap-x-8 gap-y-10"
|
|
|
|
>
|
2022-08-08 17:49:35 -04:00
|
|
|
<BlogStatBox />
|
|
|
|
<StoryStatBox />
|
|
|
|
<CommitStatBox />
|
2022-07-22 16:40:52 -04:00
|
|
|
</div>
|
2022-08-10 20:12:06 -04:00
|
|
|
|
2022-08-07 21:25:30 -04:00
|
|
|
<Services />
|
|
|
|
<About />
|
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>
|