mirror of
https://github.com/Kizuren/kizuren.dev.git
synced 2026-01-03 13:14:12 +01:00
Implement everything
This commit is contained in:
parent
d966dd9562
commit
30d747e046
26 changed files with 1069 additions and 6 deletions
24
pages/maintenance.vue
Normal file
24
pages/maintenance.vue
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<template>
|
||||
<div class="flex flex-col items-center justify-center gap-30 pt-20">
|
||||
<h1 class="font-bold text-5xl text-(--ui-primary) mt-10">
|
||||
This site is in maintenance!
|
||||
</h1>
|
||||
|
||||
<div class="flex items-center gap-2 mt-16">
|
||||
<UButton
|
||||
label="Return Home"
|
||||
variant="outline"
|
||||
color="neutral"
|
||||
to="/"
|
||||
size="xl"
|
||||
class="px-8 text-lg"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
useHead({
|
||||
title: 'Maintenance'
|
||||
})
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue