og-image/src/page/AboutPage.vue

41 lines
1 KiB
Vue
Raw Normal View History

2023-01-30 09:01:16 +01:00
<template>
2023-02-24 22:11:53 +01:00
<div class="grid grid-cols-1 col-span-12 text-center">
2023-02-25 11:53:04 +01:00
<div class="border p-4 md:p-10 md:w-1/2 m-auto">
2023-02-24 22:11:53 +01:00
<p class="mb-5">
2023-02-26 17:44:43 +01:00
This website is an image generator for Open Graph developed by
<a
href="https://www.deblan.io"
class="text-cyan-600"
>Simon Vieille</a>.
2023-02-24 22:11:53 +01:00
</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>
2023-01-30 09:01:16 +01:00
</div>
</template>
<script>
2023-02-24 22:11:53 +01:00
import DownloadButton from '../ui/DownloadButton'
2023-01-30 09:01:16 +01:00
2023-02-24 22:11:53 +01:00
export default {
components: {
DownloadButton,
},
2023-01-30 09:01:16 +01:00
}
</script>