aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.jsx
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-04-08 01:51:13 +0530
committerreal-zephex <[email protected]>2024-04-08 01:51:13 +0530
commit498121d145844cd8ff28279a49c43dfbfb080299 (patch)
tree49c12a98752d7f9fe531e26c0a2bfe1070c4b412 /src/app/page.jsx
parentminor fix (diff)
downloaddramalama-498121d145844cd8ff28279a49c43dfbfb080299.tar.xz
dramalama-498121d145844cd8ff28279a49c43dfbfb080299.zip
small chanegs here and there, manga and anime pages are currently broken. changed the image proxy to cloudflare workers.
Diffstat (limited to 'src/app/page.jsx')
-rw-r--r--src/app/page.jsx42
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>
);
}