Added License Information

merge-requests/10/head
Flycro 2022-02-05 23:56:07 +01:00
parent 94140719b8
commit 5ed8dcb11a
5 changed files with 7 additions and 30 deletions

View File

@ -1,36 +1,9 @@
<script setup lang="ts"> <script setup lang="ts">
import { isDark, toggleDark } from '~/composables'
const { t, availableLocales, locale } = useI18n()
const toggleLocales = () => {
// change to some real logic
const locales = availableLocales
locale.value = locales[(locales.indexOf(locale.value) + 1) % locales.length]
}
</script> </script>
<template> <template>
<nav class="text-xl mt-6"> <div class="prose mx-auto text-center text-sm text-gray-700 dark:text-gray-200">
<router-link class="icon-btn mx-2" to="/" :title="t('button.home')"> <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a> Copyright © 2022 Philipp Geld
<carbon-campsite /> </div>
</router-link>
<button class="icon-btn mx-2 !outline-none" :title="t('button.toggle_dark')" @click="toggleDark()">
<carbon-moon v-if="isDark" />
<carbon-sun v-else />
</button>
<a class="icon-btn mx-2" :title="t('button.toggle_langs')" @click="toggleLocales">
<carbon-language />
</a>
<router-link class="icon-btn mx-2" to="/about" :title="t('button.about')">
<carbon-dicom-overlay />
</router-link>
<a class="icon-btn mx-2" rel="noreferrer" href="https://github.com/antfu/vitesse" target="_blank" title="GitHub">
<carbon-logo-github />
</a>
</nav>
</template> </template>

View File

@ -7,4 +7,5 @@
[Default Layout] [Default Layout]
</div> </div>
</main> </main>
<Footer />
</template> </template>

View File

@ -3,4 +3,5 @@
<main class="px-4 py-10 text-center text-gray-700 dark:text-gray-200"> <main class="px-4 py-10 text-center text-gray-700 dark:text-gray-200">
<router-view /> <router-view />
</main> </main>
<Footer />
</template> </template>

View File

@ -5,4 +5,5 @@
<router-view /> <router-view />
</article> </article>
</main> </main>
<Footer />
</template> </template>

View File

@ -5,4 +5,5 @@
<router-view /> <router-view />
</article> </article>
</main> </main>
<Footer />
</template> </template>