diff options
| author | real-zephex <[email protected]> | 2024-03-17 07:08:55 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-17 07:08:55 +0530 |
| commit | bc2963f9e76a4000e3f1747b6fa4affdebba3956 (patch) | |
| tree | 39fa19bbe792b3b90b526ef5460545c76bca3dcf /src/app/header | |
| parent | minor fixes and feature improvements: added an indicator which shows when the... (diff) | |
| download | dramalama-bc2963f9e76a4000e3f1747b6fa4affdebba3956.tar.xz dramalama-bc2963f9e76a4000e3f1747b6fa4affdebba3956.zip | |
prettified the code :)
Diffstat (limited to 'src/app/header')
| -rw-r--r-- | src/app/header/header.js | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/app/header/header.js b/src/app/header/header.js index 03d1328..bc4a019 100644 --- a/src/app/header/header.js +++ b/src/app/header/header.js @@ -1,11 +1,16 @@ -import Link from "next/link" +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: "30px", color: "var(--pastel-red)"}}>Dramalama</p> + <Link + href="/" + style={{ color: "black", textDecoration: "none" }} + > + <p style={{ fontSize: "30px", color: "var(--pastel-red)" }}> + Dramalama + </p> </Link> <div className="rightNav"> <Link href="/kdrama"> @@ -16,7 +21,7 @@ export default function Header() { </Link> </div> </div> - <hr style={{marginTop: "-3px"}} /> + <hr style={{ marginTop: "-3px" }} /> </div> - ) -}
\ No newline at end of file + ); +} |