diff options
Diffstat (limited to 'src/app/components')
| -rw-r--r-- | src/app/components/footer/page.jsx | 22 | ||||
| -rw-r--r-- | src/app/components/header/header.jsx | 48 |
2 files changed, 35 insertions, 35 deletions
diff --git a/src/app/components/footer/page.jsx b/src/app/components/footer/page.jsx index 08a7c73..2bc3add 100644 --- a/src/app/components/footer/page.jsx +++ b/src/app/components/footer/page.jsx @@ -1,11 +1,11 @@ -import styles from "../../page.module.css"; - -export default async function Footer() { - return ( - <main className={styles.main}> - <div className={styles.footer}> - <p>Made with :3 by zephex</p> - </div> - </main> - ); -} +import styles from "../../page.module.css";
+
+export default async function Footer() {
+ return (
+ <main className={styles.main}>
+ <div className={styles.footer}>
+ <p>Made with :3 by zephex</p>
+ </div>
+ </main>
+ );
+}
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>
+ );
+}
|