Skip to content

Commit 17c2ca1

Browse files
committed
Added footer
1 parent 56b74c5 commit 17c2ca1

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

client/src/App.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
</template>
1414
</GTabs>
1515

16+
<GFooter />
17+
1618
<GModal v-if="errors.length > 0" title="Ocharme!" @hide="reset">
1719
<p>
1820
Please try again or contact

client/src/components/GFooter.vue

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<template>
2+
<footer>
3+
<p>© 2025 Dutch Language Institute, all rights reserved.</p>
4+
<div>
5+
<a href="https://ivdnt.org/english/privacy-statement/">privacy statement</a>
6+
<a href="https://ivdnt.org/english/terms-and-conditions/">terms and conditions</a>
7+
</div>
8+
</footer>
9+
</template>
10+
11+
<style scoped lang="scss">
12+
footer {
13+
border-top: #d9d9d9 solid 1px;
14+
display: flex;
15+
flex-direction: column;
16+
gap: 1rem;
17+
justify-content: center;
18+
align-items: center;
19+
text-align: center;
20+
background-color: #f3f3f3;
21+
padding: 3rem 1rem;
22+
font-size: 0.9rem;
23+
p {
24+
max-width: 1000px;
25+
}
26+
div {
27+
display: flex;
28+
gap: 1rem;
29+
}
30+
}
31+
</style>

0 commit comments

Comments
 (0)