aboutsummaryrefslogtreecommitdiff
path: root/src/app/header
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-17 07:08:55 +0530
committerreal-zephex <[email protected]>2024-03-17 07:08:55 +0530
commitbc2963f9e76a4000e3f1747b6fa4affdebba3956 (patch)
tree39fa19bbe792b3b90b526ef5460545c76bca3dcf /src/app/header
parentminor fixes and feature improvements: added an indicator which shows when the... (diff)
downloaddramalama-bc2963f9e76a4000e3f1747b6fa4affdebba3956.tar.xz
dramalama-bc2963f9e76a4000e3f1747b6fa4affdebba3956.zip
prettified the code :)
Diffstat (limited to 'src/app/header')
-rw-r--r--src/app/header/header.js17
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
+ );
+}