Initial commit

This commit is contained in:
Jennie Robinson Faber 2025-08-26 14:17:16 +01:00
parent 6fc1013745
commit 826517a798
18 changed files with 16576 additions and 0 deletions

30
app/pages/index.vue Normal file
View file

@ -0,0 +1,30 @@
<!-- pages/index.vue -->
<template>
<div>
<UContainer>
<UHero>
<template #title>
Pay what you can, take what you need, build what we dream
</template>
<template #description>
Ghost Guild: A solidarity-based community for game developers
exploring cooperative models
</template>
<template #actions>
<UButton to="/join" size="lg" color="purple">
Join Ghost Guild
</UButton>
</template>
</UHero>
<UGrid :cols="3" class="mt-16 gap-8">
<UCard v-for="circle in circles" :key="circle.id">
<template #header>
<h3>{{ circle.name }}</h3>
</template>
{{ circle.description }}
</UCard>
</UGrid>
</UContainer>
</div>
</template>