-
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.
My branch : Added NavBar (#15) merged
* Added NavBar * Udated * Done
- Loading branch information
1 parent
d427f04
commit f30a9be
Showing
5 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
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,3 +1,4 @@ | ||
Niraj Modi <modiniraj1034@gmail.com> | ||
Jayanta Pandit <jay.dnb@outlook.in> | ||
Rajdip Sinha <rajdips834@gmail.com> | ||
Shivam kumar Shaw <shivamshaw9005@gmail.com> |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from 'react' | ||
import Logo from '../../Assests/gdsc-logo.png' | ||
const Navbar = () => { | ||
return ( | ||
<div className='w-[100%] flex justify-center items-center py-6 relative'> | ||
<div className='flex justify-center items-center absolute left-[5vw] gap-1'> | ||
<img src={Logo} alt="image" className='h-[3.5rem]'/> | ||
<h1 className='font-bold text-lg text-[#767676]'>GDSC AEC</h1> | ||
</div> | ||
<div style={{boxShadow:' 0 0 10px rgba(0, 0, 0, 0.2)'}} className=' px-[5em] rounded-full '> | ||
<ul className=' flex justify-center items-center gap-12 drop-shadow-2xl text-sm h-[6.4vh] text-[#535353] transition-all delay-300'> | ||
<li className='hover:border-b-2 hover:border-b-blue-400 hover:cursor-pointer hover:text-blue-500'>About us</li> | ||
<li className='hover:border-b-2 hover:border-b-blue-400 hover:cursor-pointer hover:text-blue-500'>Event</li> | ||
<li className='hover:border-b-2 hover:border-b-blue-400 hover:cursor-pointer hover:text-blue-500'>Our Team</li> | ||
<li className='hover:border-b-2 hover:border-b-blue-400 hover:cursor-pointer hover:text-blue-500'>Contact</li> | ||
</ul> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Navbar |
This file was deleted.
Oops, something went wrong.