mirror of
https://github.com/BioArchLinux/Rosa.git
synced 2025-03-10 12:02:43 +00:00
add footer note
This commit is contained in:
parent
d41d4e4ee9
commit
f4df50ffc3
4 changed files with 19 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
<script setup>
|
||||
import Navbar from '@/components/Navbar.vue'
|
||||
import Footer from './components/Footer.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -7,4 +8,5 @@ import Navbar from '@/components/Navbar.vue'
|
|||
<div class="content">
|
||||
<router-view></router-view>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
</template>
|
||||
|
|
7
frontend/src/components/Footer.vue
Normal file
7
frontend/src/components/Footer.vue
Normal file
|
@ -0,0 +1,7 @@
|
|||
<template>
|
||||
<footer>
|
||||
<p>Copyright © 2023-present BioArchLinux members.</p>
|
||||
<p>Made by literal.</p>
|
||||
<p>The registered trademark Linux® is used pursuant to a sublicense from LMI, the exclusive licensee of Linus Torvalds, owner of the mark on a world-wide basis.</p>
|
||||
</footer>
|
||||
</template>
|
9
frontend/src/style/_footer.scss
Normal file
9
frontend/src/style/_footer.scss
Normal file
|
@ -0,0 +1,9 @@
|
|||
footer {
|
||||
margin: 2em 0 1em;
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
font-size: .85em;
|
||||
}
|
||||
}
|
|
@ -72,4 +72,5 @@ tr.index-item:hover {
|
|||
// Components
|
||||
@import "root";
|
||||
@import "nav";
|
||||
@import "footer";
|
||||
@import "pkginfo";
|
||||
|
|
Loading…
Add table
Reference in a new issue