store with downloads only

This commit is contained in:
Will Freeman
2025-11-13 16:40:31 -07:00
parent fac4b21717
commit 85307b7995
4 changed files with 341 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<template>
<div>
<slot name="header" />
<!-- Main content -->
<main class="mb-16">
<slot />
</main>
<!-- Footer -->
<Footer />
</div>
</template>
<script setup lang="ts">
import Footer from '../components/layout/Footer.vue'
</script>