This repository was archived by the owner on Apr 28, 2024. It is now read-only.
generated from DavDeDev/Best-README-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
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
7 changed files
with
169 additions
and
72 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
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
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,6 @@ | ||
module.exports = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} |
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 |
---|---|---|
@@ -1,9 +1,79 @@ | ||
import React from 'react' | ||
import React, { useEffect, useState } from "react"; | ||
import { Link } from "react-router-dom"; | ||
|
||
import { styles } from "../styles"; | ||
import { navLinks } from "../constants"; | ||
import { logo, menu, close } from "../assets"; | ||
|
||
const Navbar = () => { | ||
const [active, setActive] = useState(""); | ||
const [toggle, setToggle] = useState(false); | ||
|
||
return ( | ||
<div>Navbar</div> | ||
) | ||
} | ||
<nav | ||
className={`${styles.paddingX} w-full flex items-center py-5 fixed top-0 x-20 bg-primary `} | ||
> | ||
<div className="w-full flex justify-between items-center max-w-7xl mx-auto"> | ||
<Link | ||
to="/" | ||
className="flex items-center gap-2" | ||
onClick={() => { | ||
setActive(""); | ||
window.scrollTo(0, 0); | ||
}} | ||
> | ||
<img src={logo} alt="logo" className="w-9 h-9 object-contain" /> | ||
<p className="text-white text-[18px] font-bold cursor-pointer flex"> | ||
David <span className="sm:block hidden">Pietrocola</span> | ||
</p> | ||
</Link> | ||
<ul className="list-none hidden sm:flex flex-row gap-10"> | ||
{navLinks.map((link) => ( | ||
<li | ||
key={link.id} | ||
className={`${ | ||
active === link.tilte ? "text-white" : "text-secondary" | ||
} hover:text-white text-[18px] font-medium cursor-pointer`} | ||
onClick={() => setActive(link.title)} | ||
> | ||
<a href={`#${link.id}`}>{link.title}</a> | ||
</li> | ||
))} | ||
</ul> | ||
|
||
<div className="sm:hidden flex flex-1 justify-end items-center"> | ||
<img | ||
src={toggle ? close : menu} | ||
alt="menu" | ||
className="w-[28px] h-[28px] object-contain cursor-pointer" | ||
onClick={() => setToggle(!toggle)} | ||
/> | ||
<div | ||
className={`${ | ||
!toggle ? "hidden" : "flex" | ||
} p-6 black-gradient absolute top-20 right-0 mx-4 my-2 min-w-[140px] z-10 rounded-xl`} | ||
> | ||
<ul className="list-none flex justify-end items-start flex-col gap-4"> | ||
{navLinks.map((link) => ( | ||
<li | ||
key={link.id} | ||
className={`${ | ||
active === link.title ? "text-white" : "text-secondary" | ||
}font-poppins font-medium cursor-pointer text-[16px]`} | ||
onClick={() => { | ||
setToggle(!toggle); | ||
setActive(link.title); | ||
}} | ||
> | ||
<a href={`#${link.id}`}>{link.title}</a> | ||
</li> | ||
))} | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</nav> | ||
); | ||
}; | ||
|
||
export default Navbar | ||
export default Navbar; |