Improve admin navigation and local API reachability

This commit is contained in:
AzuTear
2026-06-17 13:24:41 +02:00
parent 953257bcef
commit 4a211189f0
11 changed files with 330 additions and 23 deletions
@@ -0,0 +1,15 @@
<script setup lang="ts">
defineProps<{
eyebrow?: string
title: string
description: string
}>()
</script>
<template>
<div class="space-y-3">
<p v-if="eyebrow" class="text-xs font-semibold uppercase tracking-[0.28em] text-violet-500">{{ eyebrow }}</p>
<h2 class="font-[Cormorant_Garamond] text-5xl leading-[0.95] text-violet-800">{{ title }}</h2>
<p class="max-w-3xl text-base leading-7 text-slate-600">{{ description }}</p>
</div>
</template>