add some shit
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -7,3 +7,44 @@
|
|||||||
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
||||||
'Segoe UI Symbol', 'Noto Color Emoji';
|
'Segoe UI Symbol', 'Noto Color Emoji';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--ui-primary: rgb(255, 0, 0);
|
||||||
|
--background-color: rgb(10,10,10);
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Trajan Pro Regular';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('Trajan Pro Regular'), url('fonts/TrajanPro-Regular.woff') format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Trajan Pro Bold';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('Trajan Pro Bold'), url('fonts/TrajanPro-Bold.woff') format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Perpetua Regular';
|
||||||
|
src: url('fonts/Perpetua-Regular.woff2');
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
color: grey;
|
||||||
|
font-size: medium;
|
||||||
|
padding: 2% 0;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: var(--background-color);
|
||||||
|
font-family: Perpetua Regular;
|
||||||
|
}
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<slot>All rights reserved</slot>
|
<slot>All rights reserved</slot>
|
||||||
<template v-if="this.date">
|
<template v-if="this.date">
|
||||||
|
|
||||||
• {{ this.year }}
|
• {{ this.year }}
|
||||||
</template>
|
</template>
|
||||||
</footer>
|
</footer>
|
||||||
@@ -15,7 +14,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
year: 0,
|
year: 0,
|
||||||
};
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
date: {
|
date: {
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<body>
|
||||||
asdf
|
asdf
|
||||||
|
</body>
|
||||||
</template>
|
</template>
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<body>
|
||||||
|
Several assets were aquired from <a href="https://hollowknight.wiki/">the Hollow Knight wiki</a>, under the <a href="https://creativecommons.org/licenses/by-sa/3.0/">
|
||||||
|
Creative Commons Attribution-ShareAlike 3.0
|
||||||
|
</a> licence.
|
||||||
|
</body>
|
||||||
|
</template>
|
||||||
@@ -1,12 +1,14 @@
|
|||||||
import { createRouter, createWebHistory } from 'vue-router';
|
import { createRouter, createWebHistory } from 'vue-router';
|
||||||
import App from '../App.vue';
|
import App from '../App.vue';
|
||||||
import HomeView from '../pages/HomeView.vue';
|
import HomeView from '../pages/HomeView.vue';
|
||||||
|
import LegalView from '../pages/LegalView.vue';
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
{ path: '/',
|
{ path: '/',
|
||||||
children:
|
children:
|
||||||
[
|
[
|
||||||
{ path: '', component: HomeView },
|
{ path: '', component: HomeView },
|
||||||
|
{ path: '/legal', component: LegalView },
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user