aboutsummaryrefslogtreecommitdiff
path: root/src/app/header/header.js
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-18 14:03:32 +0530
committerreal-zephex <[email protected]>2024-03-18 14:03:32 +0530
commitb1f4f412059760d85f531c3d6e2ee626c9002d28 (patch)
treedbbb23233b9388170d52fb67de6c5f48a16c30d7 /src/app/header/header.js
parentfixed a minor bug (diff)
downloaddramalama-b1f4f412059760d85f531c3d6e2ee626c9002d28.tar.xz
dramalama-b1f4f412059760d85f531c3d6e2ee626c9002d28.zip
fixes: change the file extension to .jsx and fixed the video player sizes for tablets
Diffstat (limited to 'src/app/header/header.js')
-rw-r--r--src/app/header/header.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/app/header/header.js b/src/app/header/header.js
deleted file mode 100644
index bc4a019..0000000
--- a/src/app/header/header.js
+++ /dev/null
@@ -1,27 +0,0 @@
-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>
- );
-}