diff options
Diffstat (limited to 'src/app/components/header/header.jsx')
| -rw-r--r-- | src/app/components/header/header.jsx | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/src/app/components/header/header.jsx b/src/app/components/header/header.jsx index 42978dd..9be6de2 100644 --- a/src/app/components/header/header.jsx +++ b/src/app/components/header/header.jsx @@ -1,24 +1,24 @@ -import Link from "next/link"; -import styles from "../../page.module.css"; - -export default function Header() { - return ( - <main className={styles.main}> - <div className={styles.header}> - <div className={styles.left}> - <Link - href={"/"} - style={{ textDecoration: "none", color: "white" }} - > - <p>Dramalama</p> - </Link> - </div> - <div className={styles.right}> - <Link href="/anime">Anime</Link> - <Link href="/kdrama">Kdrama</Link> - <Link href="/manga">Manga</Link> - </div> - </div> - </main> - ); -} +import Link from "next/link";
+import styles from "../../page.module.css";
+
+export default function Header() {
+ return (
+ <main className={styles.main}>
+ <div className={styles.header}>
+ <div className={styles.left}>
+ <Link
+ href={"/"}
+ style={{ textDecoration: "none", color: "white" }}
+ >
+ <p>Dramalama</p>
+ </Link>
+ </div>
+ <div className={styles.right}>
+ <Link href="/anime">Anime</Link>
+ <Link href="/kdrama">Kdrama</Link>
+ <Link href="/manga">Manga</Link>
+ </div>
+ </div>
+ </main>
+ );
+}
|