35 lines
748 B
Vue
35 lines
748 B
Vue
<template>
|
|
<UContainer class="relative overflow-hidden h-screen">
|
|
<div class="grid size-full place-content-center gap-y-8">
|
|
<SvgoLogo :filled="true" :font-controlled="false" class="mx-auto size-40" />
|
|
|
|
<div class="flex justify-center">
|
|
<UButton
|
|
to="/workflows"
|
|
>
|
|
开始演示
|
|
</UButton>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="fixed bottom-6 text-sm absolute-center-h">
|
|
<div class="flex items-center gap-1 text-(--ui-text-muted)">
|
|
<p class="text-sm">
|
|
Made by
|
|
</p>
|
|
<ULink :to="app.repo" external target="_blank">
|
|
{{ app.author }}
|
|
</ULink>
|
|
</div>
|
|
</div>
|
|
</UContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { app } = useAppConfig();
|
|
|
|
definePageMeta({
|
|
layout: "home"
|
|
});
|
|
</script>
|