Skip to content

Commit

Permalink
changed admin user dashboard button color and home page text
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesjin123 committed Dec 5, 2024
1 parent 6919d92 commit 0218701
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/Home/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function HomePage() {
}
};

const message = `Welcome to the Boilerplate, ${user.firstName} ${user.lastName}!`;
const message = `Welcome to Catalyst Kitchens, ${user.firstName} ${user.lastName}!`;

return (
<div
Expand Down
6 changes: 5 additions & 1 deletion client/src/components/buttons/InviteUserButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ function InviteUserButton() {

return (
<div style={{ marginBottom: '10px' }}>
<Button variant="contained" onClick={handleClickOpen}>
<Button
variant="contained"
onClick={handleClickOpen}
sx={{ backgroundColor: 'black' }}
>
Invite User
</Button>
<Dialog open={open} onClose={handleClose}>
Expand Down

0 comments on commit 0218701

Please sign in to comment.