From af951fc7429afd21477bbd6c030da57daf2143b2 Mon Sep 17 00:00:00 2001 From: zephex-alt <166333351+zephex-alt@users.noreply.github.com> Date: Sat, 4 May 2024 18:34:31 +0000 Subject: this was the best fix that i could come up with --- src/app/page.jsx | 73 +++++++++++++++++++++++++++++--------------------------- 1 file changed, 38 insertions(+), 35 deletions(-) (limited to 'src') diff --git a/src/app/page.jsx b/src/app/page.jsx index d154ccd..a850164 100644 --- a/src/app/page.jsx +++ b/src/app/page.jsx @@ -1,42 +1,45 @@ +"use client"; + import styles from "./page.module.css"; import Link from "next/link"; +import { useRouter } from "next/navigation"; export default function Home() { - return ( -
-
-
- -
-

Anime

-

Your one stop for all your anime needs

-
- - -
-

Manga

-

Your one stop for all your manga needs

-
- - -
-

Kdrama

-

Your one stop for all your kdrama needs

-
- -
-
-
- ); + const router = useRouter(); + router.push("https://dramalama.netlify.app"); + return; //
+ //
+ //
+ // + //
+ //

Anime

+ //

Your one stop for all your anime needs

+ //
+ // + // + //
+ //

Manga

+ //

Your one stop for all your manga needs

+ //
+ // + // + //
+ //

Kdrama

+ //

Your one stop for all your kdrama needs

+ //
+ // + //
+ //
+ //
} // Test push -- cgit v1.2.3