mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-25 02:46:39 +07:00
28 lines
438 B
Vue
28 lines
438 B
Vue
<template>
|
|
<article :class="$style.content">
|
|
<section :class="[$style.section, $style.heading]">
|
|
<BioHeading />
|
|
</section>
|
|
|
|
<section :class="$style.section">
|
|
<BioSkills />
|
|
</section>
|
|
</article>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
definePageMeta({ layout: "content" });
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.content {
|
|
}
|
|
|
|
.section {
|
|
padding: 40px 0;
|
|
|
|
&.heading {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
</style>
|