mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 11:54:09 +01:00
feat: ajouter une page d'accueil temporaire avec des informations sur le développement en cours
This commit is contained in:
@@ -1,11 +1,33 @@
|
||||
<script lang="ts" setup>
|
||||
|
||||
useSeoMeta({
|
||||
title: 'Coming Soon',
|
||||
description: 'This page is currently under development.',
|
||||
robots: 'noindex, nofollow'
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div />
|
||||
<main class="min-h-[60vh] flex flex-col items-center justify-center p-4">
|
||||
<div class="max-w-2xl text-center space-y-8">
|
||||
<h1 class="p-2 text-4xl md:text-6xl font-bold bg-linear-to-r from-inverted/40 to-inverted/75 to-70% bg-clip-text text-transparent duration-200 my-12 md:my-24">
|
||||
Coming Soon...
|
||||
</h1>
|
||||
|
||||
<p class="text-lg md:text-xl text-neutral-600 dark:text-neutral-400 leading-relaxed">
|
||||
This page is currently under development. Please check back later for exciting updates about my ecosystem, projects, and contributions.
|
||||
</p>
|
||||
|
||||
<div class="pt-8">
|
||||
<UButton
|
||||
to="/"
|
||||
icon="i-ph-arrow-left"
|
||||
size="lg"
|
||||
color="neutral"
|
||||
variant="ghost"
|
||||
>
|
||||
Return Home
|
||||
</UButton>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user