-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
350 additions
and
42 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import React from 'react' | ||
import Image from 'next/image' | ||
|
||
|
||
const Groupspage2 = () => { | ||
return ( | ||
<div className='Groups-page2'> | ||
<div className='Groups-Main'> | ||
<div className='space-y-6' > | ||
<div className='group-title'> | ||
<Image src="/GroupImage.png" width={32} height={32} alt="Groupimage" /> | ||
<div className='titlegrp-Name'>Group Name</div> | ||
<div className='end-title'>Est. 2023-09</div> | ||
</div> | ||
<p className=''>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> | ||
|
||
</div> | ||
<div className='Group-details w-full '> | ||
<div className='headGroup1'> | ||
<div className='Group-first'>Forum</div> | ||
<div className='Group-second'>https:/search.google.com</div> | ||
</div> | ||
<div className='head-Group2'> | ||
<div className='Group2-first'>Group’s Address</div> | ||
<div className='Group2-second'> | ||
<div className='Group2-Address'>cosmos1enruju0dnejv8v..</div> | ||
<Image src="/copy-logo.png" width={24} height={24} alt="Copy-logo" /> | ||
<div className='Group2-Edit'>Edit</div> | ||
</div> | ||
</div> | ||
<div className='headGroup1'> | ||
<div className='Group-first'>Total Weight</div> | ||
<div className='Group-second'>2</div> | ||
</div> | ||
<div className='headGroup1'> | ||
<div className='Group-first'>Total Members</div> | ||
<div className='Group-second'>2</div> | ||
</div> | ||
</div> | ||
<div className='Group2buttons'> | ||
<div className='updatebutton'>Update</div> | ||
<div className='leaveButton'>Leave</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Groupspage2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import React from "react"; | ||
import Image from 'next/image'; | ||
|
||
const Groupspage2table = () => { | ||
const tableData = [ | ||
{ | ||
address: "cosmos1eu0dnejv8v..", | ||
weight: "01", | ||
name: "Hemanth Sai Venkata Redyy Rao", | ||
}, | ||
{ | ||
address: "cosmos1eu0dnejv8v..", | ||
weight: "01", | ||
name: "Hemanth Sai Venkata Redyy Rao", | ||
}, | ||
{ | ||
address: "cosmos1eu0dnejv8v..", | ||
weight: "01", | ||
name: "Hemanth Sai Venkata Redyy Rao", | ||
}, | ||
{ | ||
address: "cosmos1eu0dnejv8v..", | ||
weight: "01", | ||
name: "Hemanth Sai Venkata Redyy Rao", | ||
}, | ||
|
||
]; | ||
|
||
return ( | ||
|
||
<div className='custom-group-table'> | ||
<div className='table-main'> | ||
<div className='table-main-text'>Members</div> | ||
<button className='updatemembers'>Update Members</button> | ||
</div> | ||
<div> | ||
<table className='customGrouptable'> | ||
<thead className='Grouptablehead mb-9'> | ||
<tr className='text-left'> | ||
<th>Address</th> | ||
<th>Weight</th> | ||
<th>Name</th> | ||
</tr> | ||
</thead> | ||
|
||
<tbody> | ||
{tableData.map((row, index) => ( | ||
|
||
<tr key={index} className="py-6"> | ||
<td> | ||
<div className="my-3 flex gap-2"> | ||
{row.address} | ||
<Image src="/copy.svg" width={24} height={24} alt="copy" /> | ||
</div> | ||
</td> | ||
<td>{row.weight}</td> | ||
<td>{row.name}</td> | ||
</tr> | ||
|
||
))} | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Groupspage2table; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React from 'react' | ||
import Image from 'next/image' | ||
|
||
const GroupsVotePopup = () => { | ||
return ( | ||
<div className='Groups-vote-grid'> | ||
<div className='vote-head'> | ||
<h2>You have Voted !</h2> | ||
</div> | ||
<div className='vote-Image'> | ||
<Image src="/vote.png" width={100} height={100} alt="vote-image" /> | ||
<p> You have successfully casted your vote, click on dismiss to go back</p> | ||
</div> | ||
<button className='vote-button'>Dismiss</button> | ||
</div> | ||
) | ||
} | ||
|
||
export default GroupsVotePopup |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import React from 'react' | ||
import Image from 'next/image' | ||
|
||
const VoteforProposal = () => { | ||
return ( | ||
<div className='VoteforProposal-popup'> | ||
<div className='vote-name'> | ||
<div className='vote-text'>Vote for Proposal #6 Proposal NAME</div> | ||
<Image className="absolute right-0" src="/close.svg" width={40} height={40} alt="close" /> | ||
</div> | ||
<div className='VoteProposal-buttons'> | ||
<button className='Proposal'>Yes</button> | ||
<button className='Proposal'>No</button> | ||
|
||
</div> | ||
<div className='VoteProposal-buttons'> | ||
<button className='Proposal'>Yes</button> | ||
<button className='Proposal'>No</button> | ||
</div> | ||
<div className='voteproposal-text'> | ||
<p>Justification</p> | ||
<div className='voteproposal-message'> | ||
<p>Enter here</p> | ||
</div> | ||
</div> | ||
<button className='vote-confirm'>Confirm</button> | ||
</div> | ||
) | ||
} | ||
|
||
export default VoteforProposal |
Oops, something went wrong.