began work on profile page

This commit is contained in:
ajdj100
2023-05-18 00:29:27 -04:00
parent 72184f07f2
commit 6386e02acd
7 changed files with 105 additions and 23 deletions

View File

@@ -0,0 +1,33 @@
<script>
import profileHeader from './profileHeader.vue'
export default {
name: 'ProfilePage',
components: {
profileHeader
}
}
</script>
<template>
<div id="ProfileWrapper">
<profileHeader></profileHeader>
test words
<div id="profileContentWrapper">
<RouterView />
</div>
</div>
</template>
<style>
#profileContentWrapper {
margin-left: 300px;
margin-top: 100px;
}
#ProfileWrapper {
display: flex;
flex-direction: row;
}
</style>