-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathAppFooter.vue
28 lines (26 loc) · 1.53 KB
/
AppFooter.vue
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
<template>
<footer class="mt-16 bg-gray-100 py-16">
<div class="app-container">
<p class="text-gray-600 my-4 text-sm">
The Icons, Design Guide and Taxonomy for DTPR are licensed by the Digital Trust for Places and Routines contributors under the
<NuxtLink to="https://creativecommons.org/licenses/by/4.0/" class="u-line">
Creative Commons Attribution 4.0 International (CC BY 4.0)
</NuxtLink>
<NuxtLink to="https://creativecommons.org/licenses/by/4.0/">
<UIcon name="fa6-brands:creative-commons" class="text-gray-600 w-6 h-6 align-bottom" />
<UIcon name="fa6-brands:creative-commons-by" class="text-gray-600 w-6 h-6 align-bottom" />
</NuxtLink>.
</p>
<p class="text-gray-600 my-4 text-sm">
Portions of the DTPR Icons incorporate elements of, or are derived from, <NuxtLink to="https://fonts.google.com/icons?icon.set=Material+Icons" class="u-line">Material Icons</NuxtLink>.
They are available under the <NuxtLink to="https://www.apache.org/licenses/LICENSE-2.0" class="u-line">Apache License 2.0</NuxtLink>.
The source code for this website and the Digital Channel Prototype is licensed under <NuxtLink to="https://www.apache.org/licenses/LICENSE-2.0" class="u-line">Apache License 2.0</NuxtLink>.
</p>
</div>
<div class="app-container mt-8">
<NuxtLink to="https://github.com/Helpful-Places/dtpr">
<UIcon name="fa6-brands:github" class="text-gray-600 w-6 h-6" />
</NuxtLink>
</div>
</footer>
</template>