aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.jsx
blob: a850164d24f5e9946f1c53aa61828fae4c8779af (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
"use client";

import styles from "./page.module.css";
import Link from "next/link";
import { useRouter } from "next/navigation";

export default function Home() {
	const router = useRouter();
	router.push("https://dramalama.netlify.app");
	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>
	// 		</div>
	// 	</div>
	// </main>
}

// Test push