mootfrost-dev/frontend/src/components/About.vue
2023-05-01 16:23:38 +03:00

37 lines
No EOL
860 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import { onMounted, ref } from 'vue'
import BackBtn from "./BackBtn.vue";
const codeStats = ref<{}>([])
</script>
<template>
<BackBtn/>
<div class="wrapper pe-none">
<span class="main-title">Обо мне:</span>
<p class="content">
Семейкин Андрей,<br>
Живу в Москве, учусь в 1580<br>
Пишу на C#, Python, JS. Немного знаю C++ и Java<br>
Разбираюсь в Linux, Docker, Drone CI<br>
За последнюю неделю {{codeStats}}
</p>
</div>
</template>
<style scoped>
.main-title {
font-weight: 800;
font-size: 3em;
}
.content {
margin-top: 10px;
margin-bottom: 10px;
font-size: 1.5rem;
word-wrap: break-word;
line-height: 1.9;
}
</style>