remove default theme footer files

This commit is contained in:
mahula 2023-11-17 19:09:10 +01:00
parent 0e5520bf3f
commit c6db9c517f
2 changed files with 0 additions and 29 deletions

View File

@ -1,8 +0,0 @@
import { defineClientConfig } from '@vuepress/client'
import Layout from './layouts/Layout.vue'
export default defineClientConfig({
layouts: {
Layout,
},
})

View File

@ -1,21 +0,0 @@
<script setup>
import ParentLayout from '@vuepress/theme-default/layouts/Layout.vue'
</script>
<template>
<ParentLayout>
<template #page-bottom>
<div class="my-footer">CC BY busFaktor() e.V. & Authors</div>
</template>
</ParentLayout>
</template>
<style lang="css">
.my-footer {
text-align: center;
height: 50px;
position: relative;
bottom: 0;
width: 100%;
}
</style>