This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
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
9 changed files
with
142 additions
and
79 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -1,7 +1,3 @@ | ||
* { | ||
font-size: 16px; | ||
} | ||
|
||
.footer { | ||
display: flex; | ||
justify-content: center; | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,16 +14,16 @@ const Tooltip = ({ text, position }) => { | |
return ( | ||
<p | ||
style={{ | ||
backgroundColor: 'white', | ||
color:'black', | ||
position: 'absolute', | ||
left: position.x, | ||
backgroundColor: 'white', | ||
color: 'black', | ||
position: 'absolute', | ||
left: position.x, | ||
top: position.y + 20, | ||
background:'black', | ||
color: '#fff', | ||
padding: '5px 10px', | ||
borderRadius: '5px', | ||
zIndex: 1000 | ||
background: 'black', | ||
color: '#fff', | ||
padding: '5px 10px', | ||
borderRadius: '5px', | ||
zIndex: 1000 | ||
}} | ||
> | ||
{text} | ||
|
@@ -105,36 +105,47 @@ function Footer() { | |
<a href="https://www.linkedin.com/company/tech-society-iiitbh/">Linkedin</a> | ||
</li> | ||
<li className='social-item'> | ||
<Mail /> | ||
<Mail /> | ||
<a href="mailto:[email protected]">Mail</a> | ||
</li> | ||
</div> | ||
|
||
<div className='contact'> | ||
<li onMouseEnter={(e) => showTooltip(contact_A, e)} onMouseLeave={() => hideTooltip()} style={{ cursor: 'pointer' }}> | ||
<p>Ehtisham Mohd <p className='contact-item' onClick={() => copyPhoneNumber(contact_A.no.split(' ').join(''))}> | ||
{contact_A.no}</p> | ||
<p> | ||
Ehtisham Mohd | ||
<span className='contact-item' onClick={() => copyPhoneNumber(contact_A.no.split(' ').join(''))}> | ||
{contact_A.no} | ||
</span> | ||
</p> | ||
</li> | ||
<li onMouseEnter={(e) => showTooltip(contact_B, e)} onMouseLeave={() => hideTooltip()} style={{ cursor: 'pointer' }}> | ||
<p>Soubhik Kumar Gon <p className='contact-item' onClick={() => copyPhoneNumber(contact_B.no.split(' ').join(''))}> | ||
{contact_B.no}</p> | ||
<p> | ||
Soubhik Kumar Gon | ||
<span className='contact-item' onClick={() => copyPhoneNumber(contact_B.no.split(' ').join(''))}> | ||
{contact_B.no} | ||
</span> | ||
</p> | ||
</li> | ||
<li onMouseEnter={(e) => showTooltip(contact_C, e)} onMouseLeave={() => hideTooltip()} style={{ cursor: 'pointer' }}> | ||
<p>Saswat Parasar Behera <p className='contact-item' onClick={() => copyPhoneNumber(contact_C.no.split(' ').join(''))} > | ||
{contact_C.no}</p> | ||
<p> | ||
Saswat Parasar Behera | ||
<span className='contact-item' onClick={() => copyPhoneNumber(contact_C.no.split(' ').join(''))}> | ||
{contact_C.no} | ||
</span> | ||
</p> | ||
</li> | ||
<li onMouseEnter={(e) => showTooltip(contact_D, e)} onMouseLeave={() => hideTooltip()} style={{ cursor: 'pointer' }}> | ||
<p>Abhijeet <p className='contact-item' onClick={() => copyPhoneNumber(contact_D.no.split(' ').join(''))} > | ||
{contact_D.no}</p> | ||
<p> | ||
Abhijeet | ||
<span className='contact-item' onClick={() => copyPhoneNumber(contact_D.no.split(' ').join(''))}> | ||
{contact_D.no} | ||
</span> | ||
</p> | ||
</li> | ||
</div> | ||
|
||
|
||
|
||
<div className='footer-address'> | ||
<p>IIIT Bhubaneswar, Gothapatna, Bhubaneswar, Odisha, 751003</p> | ||
<p>Email: [email protected]</p> | ||
|
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