og-image/src/page/AboutPage.vue
Simon Vieille eddd61f14a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
apply linter
2023-02-26 17:44:43 +01:00

41 lines
1 KiB
Vue

<template>
<div class="grid grid-cols-1 col-span-12 text-center">
<div class="border p-4 md:p-10 md:w-1/2 m-auto">
<p class="mb-5">
This website is an image generator for Open Graph developed by
<a
href="https://www.deblan.io"
class="text-cyan-600"
>Simon Vieille</a>.
</p>
<p class="mb-5">
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
</p>
<p>
<a
class="btn"
target="_blank"
href="https://gitnet.fr/deblan/og-image"
>
<DownloadButton
class="rounded-l-md rounded-r-md"
label="Get more information 📙"
/>
</a>
</p>
</div>
</div>
</template>
<script>
import DownloadButton from '../ui/DownloadButton'
export default {
components: {
DownloadButton,
},
}
</script>