Init commit!

This commit is contained in:
Jennie Robinson Faber 2025-08-22 18:36:16 +01:00
commit 086d682592
34 changed files with 19249 additions and 0 deletions

24
app/pages/minimal.vue Normal file
View file

@ -0,0 +1,24 @@
<template>
<div class="p-8">
<h1 class="text-3xl font-bold text-blue-600">Minimal Test Page</h1>
<p class="mt-4">If you can see this, basic routing and Vue are working!</p>
<div class="mt-6 p-4 bg-green-50 border border-green-200 rounded">
<p> Vue template rendering: Working</p>
<p> Tailwind CSS: Working</p>
<p> Nuxt routing: Working</p>
</div>
<div class="mt-4">
<button
@click="counter++"
class="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600">
Counter: {{ counter }}
</button>
</div>
</div>
</template>
<script setup>
const counter = ref(0);
</script>