feathers/docs/components/Footer.vue
Marshall Thompson ae85fa216f
feat(docs): New website and documentation pages (#2802)
* feat(docs) new docs site started

* Minor page edits

* feat(footer) fix spacing

* empty guides template

Co-authored-by: daffl <daff@neyeon.com>
2022-10-17 13:05:01 -06:00

67 lines
2.2 KiB
Vue

<script setup lang="ts">
import FooterList from './FooterList.vue'
import { useData } from 'vitepress'
import { useWindowSize } from '@vueuse/core'
import { computed } from 'vue'
const { theme } = useData()
// Adjust width based on sidebar
const { width } = useWindowSize()
const addLeftMargin = computed(() => {
return width.value > 960
})
const aboutList = [
{
label: 'Philosophy',
link: 'https://blog.feathersjs.com/why-we-built-the-best-web-framework-you-ve-probably-never-heard-of-until-now-176afc5c6aac'
},
{ label: 'Comparison', link: '/comparison' },
{ label: 'Ecosystem', link: 'https://github.com/feathersjs/awesome-feathersjs' }
]
const learnList = [
{ label: 'Guides', link: '/guides/' },
{ label: 'API', link: '/api/' },
{ label: 'Blog', link: 'https://blog.feathersjs.com' }
]
const ecosystemList = [
{ label: 'Become a Backer', link: 'https://github.com/sponsors/daffl' },
{ label: 'Find Help', link: '/help/' },
{ label: 'Github Issues', link: 'https://github.com/feathersjs/feathers/issues' }
]
</script>
<template>
<footer class="feathers-footer bg-neutral text-neutral-content" :class="{ 'sidebar-open': addLeftMargin }">
<div class="max-w-6xl w-full mx-auto pt-16 px-4">
<div class="sidebar-adjust">
<div class="title flex flex-row items-center ml-2">
<img class="logo invert mr-2" src="/logo.svg" />
feathers
</div>
<div class="flex flex-col sm:flex-row gap-12 sm:gap-0 flex-wrap mt-6 ml-10">
<FooterList title="About" :items="aboutList" class="w-1/3" />
<FooterList title="Learn" :items="learnList" class="w-1/3" />
<FooterList title="Ecosystem" :items="ecosystemList" class="w-1/3" />
</div>
<div class="h-1 bg-primary rounded-full mt-16"></div>
<div class="py-6 text-sm text-center">
<p class="message">{{ theme.footer.message }}</p>
<p class="copyright">{{ theme.footer.copyright }}</p>
</div>
</div>
</div>
</footer>
</template>
<style>
/* Only indent the footer on pages other than home-page */
#app:not(.home-page) .feathers-footer.sidebar-open .sidebar-adjust {
margin-left: 272px;
}
</style>