blob: 03d13286832dc13de7e9069c776cf17655126c96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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>
)
}
|