-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from ETLOnline/feature/ui-hanzla
Feature/UI hanzla
- Loading branch information
Showing
29 changed files
with
69 additions
and
90 deletions.
There are no files selected for viewing
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
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,36 @@ | ||
import Link from 'next/link' | ||
import React from 'react' | ||
|
||
function Navbaritems() { | ||
return ( | ||
<div className='navbar'> | ||
|
||
<Link className='nav-brand' href="#">Spark</Link> | ||
|
||
<ul className='nav'> | ||
<li className='nav-item'> | ||
<Link className='nav-link' href="/dashboard"> | ||
Dashboard</Link> | ||
</li> | ||
<li className='nav-item'> | ||
<Link className='nav-link' href="#"> | ||
Find a Mentor</Link> | ||
</li> | ||
<li className='nav-item'> | ||
<Link className='nav-link' href="#"> | ||
About Us</Link> | ||
</li> | ||
<li className='nav-item'> | ||
<Link className='nav-link' href="#"> | ||
Pricing</Link> | ||
</li> | ||
<li className='nav-item'> | ||
<Link className='nav-link' href="#"> | ||
Become a Member</Link> | ||
</li> | ||
</ul> | ||
</div> | ||
) | ||
} | ||
|
||
export default Navbaritems |