mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
"use client"
|
|
import {useRouter} from "next/navigation";
|
|
import {useEffect} from "react";
|
|
|
|
export default function NotFound() {
|
|
|
|
const router = useRouter();
|
|
|
|
useEffect(() => {
|
|
router.push('/');
|
|
}, [router]);
|
|
|
|
return null; // You can return null or a loading spinner while the redirect happens
|
|
} |