Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

belindas_closet_nextjs_11_532_add-profile-button-to-creator-page #535

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion app/creator-page/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Creator = () => {
flexDirection="column"
sx={{ mt: 6 }}
>
<Grid container spacing={ isMobile ? 3 : 2 } justifyContent="center" alignItems="center">
<Grid container spacing={isMobile ? 3 : 2} justifyContent="center" alignItems="center">
<Grid item xs={12} sm="auto">
<Button
href="/add-product-page"
Expand Down Expand Up @@ -67,6 +67,16 @@ const Creator = () => {
>
Archived Products
</Button>
</Grid>
<Grid item xs={12} sm="auto">
<Button
href="/profile"
color="primary"
variant="contained"
sx={{ width: "200px" }}
>
Profile
</Button>
</Grid>
</Grid>
</Box>
Expand Down
Loading