aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/header
diff options
context:
space:
mode:
authorzephex <[email protected]>2024-04-20 13:34:53 +0530
committerzephex <[email protected]>2024-04-20 13:34:53 +0530
commitd6780cf3dad729c69a102ba2940188cf1e6bcbf4 (patch)
treed10a2aefef6664c42439f165c73722c514b032bc /src/app/components/header
parentfeature added: tracker for mangas (diff)
downloaddramalama-d6780cf3dad729c69a102ba2940188cf1e6bcbf4.tar.xz
dramalama-d6780cf3dad729c69a102ba2940188cf1e6bcbf4.zip
idk whats happening
Diffstat (limited to 'src/app/components/header')
-rw-r--r--src/app/components/header/header.jsx48
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>
+ );
+}