diff options
Diffstat (limited to 'src/app/page.jsx')
| -rw-r--r-- | src/app/page.jsx | 42 |
1 files changed, 30 insertions, 12 deletions
diff --git a/src/app/page.jsx b/src/app/page.jsx index 109264d..231b93d 100644 --- a/src/app/page.jsx +++ b/src/app/page.jsx @@ -1,24 +1,42 @@ import Image from "next/image"; import styles from "./page.module.css"; +import Link from "next/link"; import Footer from "./components/footer/page"; export default function Home() { return ( <main className={styles.main}> - <div className={styles.welcomeContainer}> + <Link href="https://github.com/real-zephex/Dramalama"> <Image - src="/logo.png" - width={300} - height={300} - alt="Logo" - priority - ></Image> - <p> - Hey there, welcome to Dramalama. We are excited to have you - on board. - </p> + src={"/dramalama.svg"} + width={480} + height={240} + className={styles.HomeSVG} + /> + </Link> + <div className={styles.redirects}> + <Link href="/kdrama"> + <p>kdrama </p> + </Link> + <p style={{ color: "white" }}>|</p> + <Link href="/"> + <p> + anime + <span style={{ color: "var(--pastel-red)" }}> + (depr) + </span> + </p> + </Link> + <p style={{ color: "white" }}>|</p> + <Link href="/"> + <p> + manga + <span style={{ color: "var(--pastel-red)" }}> + (down) + </span> + </p> + </Link> </div> - <Footer /> </main> ); } |