fix: move page components out of site

This commit is contained in:
2026-03-26 11:06:51 -04:00
parent ca1750ac87
commit fa557c0f9e

View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
defineProps<{ title?: string }>();
</script>
<template>
<header v-if="title" class="py-3">
<div class="container">
<h1 class="heading-1">{{ title }}</h1>
</div>
</header>
</template>