Skip to content

Commit

Permalink
Add Sevalla Sponsor
Browse files Browse the repository at this point in the history
  • Loading branch information
sixlive committed Jan 10, 2025
1 parent d8796d8 commit 6abcff8
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/.vitepress/theme/HostedFooter.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<template>
<div>
<a href="https://sevalla.com/">
<img class="m-auto max-w-32 pb-4" src="/assets/hosted-on-sevalla.png" />
</a>
</div>
</template>

<script>
export default {
name: "Footer",
data() {
return {};
},
props: {},
computed: {},
methods: {},
mounted() {},
};
</script>

<style scoped></style>
12 changes: 12 additions & 0 deletions docs/.vitepress/theme/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { h } from "vue";
import DefaultTheme from "vitepress/theme";
import HostedFooter from "./HostedFooter.vue";

export default {
extends: DefaultTheme,
Layout() {
return h(DefaultTheme.Layout, null, {
"layout-bottom": () => h(HostedFooter),
});
},
};
Binary file added docs/public/assets/hosted-on-sevalla.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/public/assets/sevalla.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6abcff8

Please sign in to comment.