Skip to content

Commit

Permalink
Merge pull request #24 from PranavMurali-Coder/main
Browse files Browse the repository at this point in the history
fixed memberDash
  • Loading branch information
Marvellousz authored Mar 14, 2024
2 parents a03557f + 963309e commit c157b16
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/events/event1/memberDash/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const TeamPage = () => {
style={{ backgroundImage: 'url(/assets/bg/spceBg.svg)' }}
>
{isLoading && <LoadingScreen/>}
<Navbar />
{/* <Navbar /> */}

<div className="max-w-screen-xl mx-auto p-4 text-center">
<h1 className="text-3xl font-bold mb-4 mt-8 text-white">Team : {teamName}</h1>
Expand Down
11 changes: 11 additions & 0 deletions components/LeaveButton.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const LeaveButton = ({onClick}) => {
return (
<button
onClick={onClick}
className="bg-red-500 text-white px-3 py-1 rounded-full">
Leave
</button>
);
};

export default LeaveButton;

0 comments on commit c157b16

Please sign in to comment.