Files
fnb/app/layouts/default.vue
T
2025-10-23 09:56:18 +02:00

11 lines
182 B
Vue

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