My older first portfolio website
1<template>
2 <div class="about">
3 <div class="border border-red-600 theme-bg px-4">
4 <AboutMe />
5 </div>
6 </div>
7</template>
8
9<script>
10import AboutMe from "@/components/AboutMe.vue";
11export default {
12 name: "About",
13 components: {
14 AboutMe
15 }
16};
17</script>
18
19<style>
20.about {
21 margin: 0 1em;
22 padding: 0 0.5em;
23 background-color: var(--secondary-bg);
24}
25
26.theme-bg {
27 background-color: var(--main-bg);
28}
29</style>