Skip to content

Commit

Permalink
WIP: Laying out general template structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Nopfed committed Oct 2, 2023
1 parent 97ff870 commit 446443a
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions pages/profile.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<template>
<v-container>
<v-row>
<v-col lg="2" offset-lg="1">
<v-row class="mt-4" justify="center">
<v-avatar color="black" size="200"/>
</v-row>
<v-row class="mt-4 mb-1 mx-auto" justify="center">
<v-btn justify="center">Tip / Edit</v-btn>
</v-row>
</v-col>
<v-col lg="4" offset-lg="1">
<v-card elevation="0">
<v-card-title>Artist Name</v-card-title>
<v-card-subtitle class="pb-0">
<p class="mb-0">Second Name</p>
<p class="mb-0">Third Name</p>
<p class="mb-0">Socials</p>
</v-card-subtitle>
<v-card-text class="pb-0">
Artist bio goes here please.
</v-card-text>
</v-card>
</v-col>
</v-row>
<v-row dense>
<v-col lg="6">
<v-tabs color="black">
<v-tab value="one">Art</v-tab>
<v-tab value="two">Likes</v-tab>
<v-tab value="three">Tips</v-tab>
</v-tabs>
<v-divider/>
</v-col>
</v-row>
<v-row>
<v-col>
<template>

</template>
<template>

</template>
<template>

</template>
</v-col>
</v-row>
</v-container>
</template>


<style scoped>
</style>


<script setup lang="ts">
</script>

0 comments on commit 446443a

Please sign in to comment.