-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Rafael Kristoforus Yanto <[email protected]>
- Loading branch information
1 parent
d59cecf
commit 32feb92
Showing
5 changed files
with
50 additions
and
113 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import Link from 'next/link'; | ||
|
||
const Navbar = () => { | ||
return ( | ||
<nav className="flex items-center justify-center p-6 lg:px-8 "> | ||
<div | ||
className={`fixed inset-0 z-10 bg-gray-800 bg-opacity-75 transition-opacity lg:relative lg:flex lg:gap-x-12 lg:bg-transparent opacity-100`} | ||
> | ||
<div className="flex flex-col lg:flex-row lg:gap-x-12 lg:items-center lg:justify-center p-4 lg:p-0"> | ||
<Link href="/about" className="text-sm font-semibold leading-6 text-white lg:text-gray-0"> | ||
About | ||
</Link> | ||
<Link href="/gallery" className="text-sm font-semibold leading-6 text-white lg:text-gray-0"> | ||
Gallery | ||
</Link> | ||
<Link href="/contact" className="text-sm font-semibold leading-6 text-white lg:text-gray-0"> | ||
Contact Us | ||
</Link> | ||
</div> | ||
</div> | ||
</nav> | ||
); | ||
}; | ||
|
||
export default Navbar; |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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