Initial commit

This commit is contained in:
2026-06-24 23:47:55 -07:00
commit d134b480a0
297 changed files with 30726 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<template>
<v-row>
<v-col>
<UserProfileCard :user-id="currentUser.id" />
</v-col>
</v-row>
<v-row>
<v-col>
<router-view />
</v-col>
</v-row>
</template>
<script lang="ts" setup>
import useBreadcrumbs from "@/use/use-breadcrumbs"
import useCurrentUser from "@/use/use-current-user"
import UserProfileCard from "@/components/users/UserProfileCard.vue"
const { currentUser } = useCurrentUser<true>()
useBreadcrumbs("My Profile", [
{
title: "My Profile",
to: {
name: "ProfilePage",
},
},
])
</script>
<style scoped></style>