Files
website/src/views/BaseArticle.vue
LJ5O 43981651b1 Added a new route
Mainly for test and dev purposes
2025-03-19 16:01:02 +01:00

21 lines
340 B
Vue

<template>
<Header/>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>
<script setup>
import Header from '@/components/header.vue';
</script>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>