2025-08-11

This commit is contained in:
Indigo5684
2025-08-11 17:41:21 -05:00
parent 415cf04b77
commit 1f9934a133
28 changed files with 299 additions and 444 deletions

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