Skip to content

Commit

Permalink
feat(bottle): add admin features
Browse files Browse the repository at this point in the history
  • Loading branch information
stakbucks committed Oct 31, 2024
1 parent cffc95c commit 3e96c95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion apps/bottle/src/app/admin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,16 @@ export default function AdminPage() {
프로필 수정 이동{' >'}
</Button>
</Link>
<Link href={'/bottles'}>
<Link href={'/bottles/sents'}>
<Button size="md" variant="outlined">
도착한 보틀 이동{' >'}
</Button>
</Link>
<Link href={'/intro/create'}>
<Button size="md" variant="outlined">
자기소개&프로필 사진 등록{' >'}
</Button>
</Link>
</div>
</Step>
</ProfileLayout.Contents>
Expand Down
2 changes: 2 additions & 0 deletions apps/bottle/src/components/common/avatar/avatarStyle.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ export const containerStyle = recipe({
base: {
borderRadius: '50%',
position: 'relative',
userSelect: 'none',
WebkitUserSelect: 'none',
},
variants: {
size: {
Expand Down

0 comments on commit 3e96c95

Please sign in to comment.