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";
|
|
|
|
|
2023-05-23 16:54:36 -04:00
|
|
|
//definePageMeta({ layout: "withtop" });
|
2022-08-10 20:31:16 -04:00
|
|
|
useTitle("Home", "Personal website!");
|
2024-03-01 15:50:04 -05:00
|
|
|
|
|
|
|
const welcomeStrings = ["Welcome!", "Bienvenue!", "欢迎!"];
|
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">
|
2024-03-01 15:50:04 -05:00
|
|
|
<HeaderLoop class="text-bitter font-bold" :strings="welcomeStrings" />
|
2023-02-25 12:33:30 -05:00
|
|
|
<p>What are you here to see?</p>
|
2023-03-09 23:49:19 -05:00
|
|
|
<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
|
2024-11-14 17:52:20 -05:00
|
|
|
class="flex justify-around items-start w-full flex-wrap gap-x-8 gap-y-10"
|
2022-08-10 10:56:49 -04:00
|
|
|
>
|
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>
|