diff options
| author | zephex <[email protected]> | 2024-04-20 13:34:53 +0530 |
|---|---|---|
| committer | zephex <[email protected]> | 2024-04-20 13:34:53 +0530 |
| commit | d6780cf3dad729c69a102ba2940188cf1e6bcbf4 (patch) | |
| tree | d10a2aefef6664c42439f165c73722c514b032bc /src/app/components/header | |
| parent | feature added: tracker for mangas (diff) | |
| download | dramalama-d6780cf3dad729c69a102ba2940188cf1e6bcbf4.tar.xz dramalama-d6780cf3dad729c69a102ba2940188cf1e6bcbf4.zip | |
idk whats happening
Diffstat (limited to 'src/app/components/header')
| -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>
+ );
+}
|