Added a new route

Mainly for test and dev purposes
This commit is contained in:
2025-03-19 16:01:02 +01:00
parent 222b9d8914
commit 43981651b1
6 changed files with 70 additions and 3 deletions

21
src/views/BaseArticle.vue Normal file
View File

@@ -0,0 +1,21 @@
<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>

View File

@@ -1,5 +1,4 @@
<script setup>
import GOLbackground from '@/components/GOLbackground.vue';
import welcome from '@/components/home/welcome.vue';
import intersection from '@/components/home/intersection.vue';
import presentation from '@/components/home/presentation.vue';
@@ -43,8 +42,6 @@
<template>
<GOLbackground />
<welcome/>
<intersection text="Lorem ipsum dolor sit amet" button-text="En savoir plus" button-link="#"/>