blob: 231b93da49c30a691068b53d1ac26c9ad1d6ce77 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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}>
<Link href="https://github.com/real-zephex/Dramalama">
<Image
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>
</main>
);
}
|