mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
21 lines
340 B
Vue
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>
|
|
|