🎉 Initial commit

This commit is contained in:
2025-10-23 09:56:18 +02:00
commit 22982921d9
12 changed files with 1964 additions and 0 deletions

10
app/layouts/default.vue Normal file
View File

@@ -0,0 +1,10 @@
<template>
<slot />
</template>
<script lang="ts" setup>
useHead({
title: "Food Not Bombs",
link: [{ rel: "icon", type: "image/png", href: "/logo.png" }],
});
</script>