added frontend and updated backend with docker, wrote some initial instructions

This commit is contained in:
Elmar Kresse
2023-09-19 21:34:29 +02:00
parent b8a638a5fe
commit c051995823
87 changed files with 4987 additions and 1574 deletions

View File

@@ -0,0 +1,39 @@
<script lang="ts" setup>
import { ref } from "vue";
const items = ref([
{
label: "Create Calendar",
icon: "pi pi-fw pi-plus",
url: "/",
},
{
label: "FAQ",
icon: "pi pi-fw pi-book",
url: "/faq",
},
{
label: "Impress",
icon: "pi pi-fw pi-id-card",
url: "/impress",
},
{
label: "Privacy",
url: "/privacy-policy",
icon: "pi pi-fw pi-exclamation-triangle",
},
]);
</script>
<template>
<Menubar :model="items" class="menubar justify-content-center">
<template #start></template>
</Menubar>
</template>
<style scoped>
.menubar {
background-color: transparent;
border: none;
}
</style>