mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-25 02:46:39 +07:00
51 lines
747 B
Vue
51 lines
747 B
Vue
<template>
|
|
<article :class="$style.content">
|
|
<section :class="[$style.section, $style.heading]">
|
|
<BioHeading />
|
|
</section>
|
|
|
|
<section :class="$style.section">
|
|
<BioSkills />
|
|
</section>
|
|
|
|
<section :class="$style.section">
|
|
<BioProjects />
|
|
</section>
|
|
</article>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
scrollToTop: true,
|
|
head() {
|
|
return {
|
|
title: "About Me",
|
|
};
|
|
},
|
|
};
|
|
|
|
definePageMeta({ layout: "landing" });
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
@import "@/assets/css/mixins";
|
|
|
|
.content {
|
|
@include container;
|
|
}
|
|
|
|
.section {
|
|
padding: 40px 0;
|
|
|
|
&.heading {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.heading {
|
|
@include desktop {
|
|
padding-top: 0;
|
|
padding-top: 20px;
|
|
}
|
|
}
|
|
</style>
|