aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/header/header.jsx
blob: 286aed6166aec3f6c9adb2fd95d0556e81d3a5f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import Link from "next/link";

import styles from "./header.module.css";

export default function Header() {
	return (
		<div className={styles.headMain}>
			<div className={styles.headNav}>
				<Link
					href="/"
					style={{ color: "black", textDecoration: "none" }}
				>
					<p style={{ fontSize: "26px", color: "var(--pastel-red)" }}>
						Dramalama
					</p>
				</Link>
				<div className={styles.rightNav}>
					<Link href="/anime">
						<p>Anime</p>
					</Link>
					<Link href="/manga">
						<p>Manga</p>
					</Link>
					{/* <Link href="/kdrama">
						<p>Kdrama</p>
					</Link> */}
				</div>
			</div>
			<hr style={{ marginTop: "-3px" }} />
		</div>
	);
}