add second year of uni

This commit is contained in:
unurled 2023-11-16 21:59:38 +01:00
parent 7ae7cafe97
commit 2f539eff2a
Signed by: unurled
GPG key ID: FDBC9CBE1F82423F

View file

@ -1,31 +1,62 @@
<script lang="ts">
export default {
props: {
cv: Boolean
}
}
props: {
cv: Boolean,
},
};
</script>
<template>
<div class="mt-10 container mx-auto bg bg-white-2 dark:bg-dark-black-1 rounded-2xl p-12 h-1/2" :class="cv ? '' : 'hidden'">
<div class="border rounded-lg dark:border-white-2">
<table class="table-auto w-full border-spacing-1 border-separate">
<thead class="text-dark-black-3 dark:text-white-2">
<tr class="border-black-1 dark:border-white-3">
<th>Location</th>
<th>Description</th>
<th>Year</th>
</tr>
</thead>
<tbody class="text-dark-bg dark:text-white-1">
<tr class="">
<th>BUT Informatique S1-2 Belfort</th>
<th>First year of computer science</th>
<th>2022-2023</th>
</tr>
</tbody>
</table>
</div>
<div
class="mt-10 container mx-auto bg bg-white-2 dark:bg-dark-black-1 rounded-2xl p-12 h-1/2"
:class="cv ? '' : 'hidden'"
>
<div class="border rounded-lg dark:border-white-2">
<table class="border-collapse table-auto w-full">
<thead class="text-dark-black-3 dark:text-white-2">
<tr class="border-black-1 dark:border-white-3">
<th
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
>
Location
</th>
<th
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
>
Description
</th>
<th
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
>
Year
</th>
</tr>
</thead>
<tbody class="text-dark-bg dark:text-white-1">
<tr>
<th
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
>
BUT Informatique S1-2 Belfort
</th>
<th
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
>
First year of computer science
</th>
<th
class="border border-dark-bg dark:border-white-3 border-t-0 border-l-0 border-r-0 border-b-2 pt-3 pb-3"
>
2022-2023
</th>
</tr>
<tr class="">
<th class="pt-3 pb-3">BUT Informatique S3-4 Strasbourg</th>
<th class="pt-3 pb-3">Second year of computer science</th>
<th class="pt-3 pb-3">2023-2024</th>
</tr>
</tbody>
</table>
</div>
</div>
</template>