Redirect to /dashboard

This commit is contained in:
decolua 2026-01-05 11:07:43 +07:00
parent b0e2eb2b4b
commit eb4c7093a4

View file

@ -1,7 +1,7 @@
// Auto-initialize cloud sync when server starts
import "@/lib/initCloudSync";
import LandingPage from "./landing/page";
import { redirect } from "next/navigation";
export default function InitPage() {
return <LandingPage />;
redirect('/dashboard');
}