diff options
Diffstat (limited to 'src/app/header/header.js')
| -rw-r--r-- | src/app/header/header.js | 17 |
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 + ); +} |