2022-09-15 19:15:07 +02:00
|
|
|
<template>
|
|
|
|
<div class="bg-neutral-100 dark:bg-neutral-900 text-primary h-screen flex flex-col">
|
2022-09-16 21:11:44 +02:00
|
|
|
<LayoutTopbar class="mb-3" />
|
2022-09-15 19:15:07 +02:00
|
|
|
<NuxtPage class="overflow-y-scroll mb-auto" />
|
|
|
|
<LayoutNavbar />
|
|
|
|
</div>
|
2022-09-19 09:36:47 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { doc, getFirestore, serverTimestamp, writeBatch, collection, getDocs } from "firebase/firestore";
|
|
|
|
|
|
|
|
const db = getFirestore()
|
|
|
|
|
|
|
|
|
|
|
|
provide('firebase', { db })
|
|
|
|
</script>
|