public/pages/index.vue

38 lines
884 B
Vue
Raw Normal View History

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";
//definePageMeta({ layout: "withtop" });
2022-08-10 20:31:16 -04:00
useTitle("Home", "Personal website!");
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">
2023-02-25 12:33:30 -05:00
<div class="flex flex-col items-center">
<h1 class="text-bitter font-bold">Welcome!</h1>
<p>What are you here to see?</p>
<p>
For my portfolio, please visit
<a class="underline" href="https://github.com/potatoeggy">GitHub</a>
instead.
</p>
2023-02-25 12:33:30 -05:00
</div>
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"
>
<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>