This commit is contained in:
headlesdev
2025-05-17 16:17:35 +02:00
parent 52251344f2
commit 95b70221f5
2 changed files with 149 additions and 18 deletions

View File

@@ -1,26 +1,31 @@
"use client";
import { useEffect } from "react";
import SetupPage from "./SetupPage";
import Loading from "@/components/Loading";
import { useState, useEffect } from "react";
import { useRouter } from "next/navigation";
import axios from "axios";
export default function Setup() {
const router = useRouter();
const [loading, setLoading] = useState(true);
export default function SetupPage() {
const router = useRouter();
useEffect(() => {
const init = async () => {
const response = await axios.get("/api/user/init");
if (response.data.message !== "No users found") {
router.push("/");
} else {
setLoading(false);
}
};
init();
}, []);
useEffect(() => {
const init = async () => {
const response = await axios.get("/api/user/init");
if (response.data.message !== "No users found") {
router.push("/");
}
};
init();
}, []);
return (
<div>
<h1>Setup</h1>
</div>
);
if (loading) {
return <Loading />;
} else {
return <SetupPage />;
}
}