18 lines
585 B
Vue
18 lines
585 B
Vue
<script lang="ts" setup>
|
|
import { Head } from '@inertiajs/vue3';
|
|
import HelpText from '@/components/HelpText.vue';
|
|
import LinkHeader from '@/components/LinkHeader.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Perceptron Viewer"></Head>
|
|
<main class="flex min-h-dvh flex-col gap-6 pb-6">
|
|
<LinkHeader class="w-full my-0! py-6 sticky top-0 z-10 bg-background" />
|
|
<div
|
|
class="flex flex-col items-center gap-6 rounded-lg p-6 shadow sm:p-8"
|
|
>
|
|
<HelpText markdownFileName="intro" class="max-w-[90ch]" />
|
|
</div>
|
|
</main>
|
|
</template>
|