diff options
| author | real-zephex <[email protected]> | 2024-03-14 16:16:36 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-14 16:16:36 +0530 |
| commit | 8c7f9fd113611df8c2f308b7120c0a8ae4cae706 (patch) | |
| tree | d2cb96fee85aade8d5ba9a3de0743d026c1e4f02 /src/app/header/header.js | |
| parent | Initial commit from Create Next App (diff) | |
| download | dramalama-8c7f9fd113611df8c2f308b7120c0a8ae4cae706.tar.xz dramalama-8c7f9fd113611df8c2f308b7120c0a8ae4cae706.zip | |
First commit: Rewriting dramalama in next.js
Diffstat (limited to 'src/app/header/header.js')
| -rw-r--r-- | src/app/header/header.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/app/header/header.js b/src/app/header/header.js new file mode 100644 index 0000000..b1ae7bd --- /dev/null +++ b/src/app/header/header.js @@ -0,0 +1,22 @@ +import Link from "next/link" + +export default function Header() { + return ( + <div className="headMain"> + <div className="headNav"> + <Link href="/" style={{color: "black", textDecoration: "none"}}> + <p style={{fontSize: "32px", color: "var(--pastel-red)"}}>Dramalama</p> + </Link> + <div className="rightNav"> + <Link href="/kdrama"> + <p>Kdrama</p> + </Link> + <Link href="/anime"> + <p>Anime</p> + </Link> + </div> + </div> + <hr style={{marginTop: "-3px"}} /> + </div> + ) +}
\ No newline at end of file |