aboutsummaryrefslogtreecommitdiff
path: root/src/app/header/header.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/header/header.jsx')
-rw-r--r--src/app/header/header.jsx27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/app/header/header.jsx b/src/app/header/header.jsx
new file mode 100644
index 0000000..bc4a019
--- /dev/null
+++ b/src/app/header/header.jsx
@@ -0,0 +1,27 @@
+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>
+ <div className="rightNav">
+ <Link href="/kdrama">
+ <p>Kdrama</p>
+ </Link>
+ <Link href="/anime">
+ <p>Anime</p>
+ </Link>
+ </div>
+ </div>
+ <hr style={{ marginTop: "-3px" }} />
+ </div>
+ );
+}