mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
New page about internship at Hachinohe kosen
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
<template>
|
||||
<div class="about">
|
||||
<h1>This is an about page</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
@media (min-width: 1024px) {
|
||||
.about {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
32
src/views/projects/semanticSegmentationView.vue
Normal file
32
src/views/projects/semanticSegmentationView.vue
Normal file
@@ -0,0 +1,32 @@
|
||||
<template>
|
||||
<Header/>
|
||||
<div id="title_div">
|
||||
<h1>{{ $t("projects.semantic_segmentation.title") }}</h1>
|
||||
<p>{{ $t("projects.semantic_segmentation.subtitle") }}</p>
|
||||
</div>
|
||||
<article>
|
||||
|
||||
</article>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Header from '@/components/header.vue';
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
article, #title_div{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
p,h1{
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user