Files
website/src/components/LeftColumn.vue
Indigo5684 1f9934a133 2025-08-11
2025-08-11 17:41:21 -05:00

18 lines
380 B
Vue

<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>