initial commit

This commit is contained in:
Madison Grubb
2026-02-10 23:32:26 -05:00
commit b7046dc0e6
133 changed files with 26080 additions and 0 deletions

27
app/error.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<div class="flex min-h-screen items-center justify-center bg-kestrel-bg font-mono text-kestrel-text">
<div class="text-center">
<h1 class="text-2xl font-semibold tracking-wide [text-shadow:0_0_12px_rgba(34,201,201,0.3)]">
[ Error ]
</h1>
<p class="mt-2 text-sm text-kestrel-muted">
{{ error?.message ?? 'Something went wrong' }}
</p>
<button
type="button"
class="mt-4 rounded border border-kestrel-accent/50 bg-kestrel-accent-dim px-4 py-2 text-kestrel-accent shadow-glow-sm transition-colors hover:bg-kestrel-accent/20 hover:opacity-90"
@click="handleClear"
>
&gt; Go back
</button>
</div>
</div>
</template>
<script setup>
const error = useError()
function handleClear() {
clearError()
navigateTo('/')
}
</script>