create frontend directory

This commit is contained in:
2025-07-11 23:55:46 +02:00
parent c281b9a673
commit dba7a8b0e8
110 changed files with 0 additions and 0 deletions

5
frontend/pages/about.vue Normal file
View File

@@ -0,0 +1,5 @@
<template>
<section>
<h1>/about</h1>
</section>
</template>

3
frontend/pages/index.vue Normal file
View File

@@ -0,0 +1,3 @@
<template>
<p>/</p>
</template>

View File

@@ -0,0 +1,3 @@
<template>
<DirectoryList />
</template>

View File

@@ -0,0 +1,28 @@
<script setup lang="ts">
import { ScrollArea } from '@/components/ui/scroll-area';
const warrens = ['Thyr', 'Serc'];
</script>
<template>
<ScrollArea class="w-full h-full">
<div class="flex flex-row gap-2">
<Button
v-for="(warren, i) in warrens"
:key="i"
class="w-36 h-12"
variant="outline"
size="lg"
as-child
>
<NuxtLink
class="flex flex-row items-center gap-1.5"
:to="`/warrens/${warren}`"
>
<Icon name="lucide:folder-root" />
{{ warren }}
</NuxtLink>
</Button>
</div>
</ScrollArea>
</template>