mirror of
https://github.com/go-task/task.git
synced 2026-08-29 10:08:27 +02:00
23 lines
552 B
Vue
23 lines
552 B
Vue
<script setup lang="ts">
|
|
import { VPHomeSponsors } from 'vitepress/theme';
|
|
import { sponsors } from '../sponsors';
|
|
import AdoptersCarousel from './AdoptersCarousel.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="content">
|
|
<div class="content-container">
|
|
<main class="main">
|
|
<AdoptersCarousel />
|
|
<VPHomeSponsors
|
|
v-if="sponsors"
|
|
message="Task is free and open source, made possible by wonderful sponsors."
|
|
:data="sponsors"
|
|
/>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|