2025-08-11
This commit is contained in:
17
src/components/LeftColumn.vue
Normal file
17
src/components/LeftColumn.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<script setup lang="ts">
|
||||
import ProfileCard from './cards/ProfileCard.vue'
|
||||
import LinksCard from './cards/LinksCard.vue'
|
||||
import EducationCard from './cards/EducationCard.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<v-row>
|
||||
<v-col> <ProfileCard /></v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col> <LinksCard /></v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col> <EducationCard /></v-col>
|
||||
</v-row>
|
||||
</template>
|
||||
Reference in New Issue
Block a user