blob: 91f9551c022668f5ec229a95ef0f3c2bee7cc26c (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import styles from "./page.module.css";
import Link from "next/link";
export default async function Home() {
return (
<main className={styles.newbg}>
<div className={styles.content}>
<div className={styles.contentContainer}>
<Link
href={"/anime"}
title="Click here to get redirected to the anime webpage"
>
<div className={styles.anime}>
<h2>Anime</h2>
<p>Your one stop for all your anime needs</p>
</div>
</Link>
<Link
href={"/manga"}
title="Click here to get redirected to the manga webpage"
>
<div className={styles.manga}>
<h2>Manga</h2>
<p>Your one stop for all your manga needs</p>
</div>
</Link>
<Link
href={"/kdrama"}
title="Click here to get redirected to the kdrama webpage"
>
<div className={styles.kdrama}>
<h2>Kdrama</h2>
<p>Your one stop for all your kdrama needs</p>
</div>
</Link>
<Link
href={"/movies"}
title="Click here to get redirected to the kdrama webpage"
>
<div className={styles.movies}>
<h2>Movies</h2>
<p>Your one stop for all your movie needs</p>
</div>
</Link>
<Link
href={"/web-series"}
title="Click here to get redirected to the kdrama webpage"
>
<div className={styles.movies}>
<h2>Web Series</h2>
<p>Your one stop for all your web-series needs</p>
</div>
</Link>
</div>
</div>
</main>
);
}
// Test push
|