blob: b16bc929013438ea4e827187bd7afb6ee5d00286 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<template>
<div>
<h1>À propos la site web</h1>
<p>Cette site web est créé pour mon Français projet.</p>
<h1>Crédits</h1>
<p>Site web créé par <a href="https://alee14.me">Andrew Lee</a></p>
<h1>License</h1>
<p>
Chine Projet<br />
Copyright (C) 2020 Andrew Lee <br />
<br />
This program is free software: you can redistribute it and/or modify
<br />
it under the terms of the GNU General Public License as published by
<br />
the Free Software Foundation, either version 3 of the License, or <br />
(at your option) any later version. <br />
<br />
This program is distributed in the hope that it will be useful, <br />
but WITHOUT ANY WARRANTY; without even the implied warranty of <br />
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the <br />
GNU General Public License for more details. <br />
<br />
You should have received a copy of the GNU General Public License <br />
along with this program. If not, see
<a href="https://www.gnu.org/licenses">https://www.gnu.org/licenses</a>.
</p>
</div>
</template>
<script>
export default {
components: {},
}
</script>
|