33 lines
790 B
TypeScript
33 lines
790 B
TypeScript
"use client";
|
|
|
|
import { News } from "@/components/news";
|
|
import { Duties } from "@/components/flow";
|
|
import { Parole } from "@/components/parole";
|
|
import { useSession } from "next-auth/react";
|
|
import { useEffect, useState } from "react";
|
|
|
|
export default function Home() {
|
|
const { data: session } = useSession();
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
if (session) {
|
|
setIsLoading(false);
|
|
}
|
|
}, [session]);
|
|
|
|
if (isLoading) {
|
|
return <div>Loading...</div>;
|
|
}
|
|
|
|
return (
|
|
<main className="flex min-h-screen flex-col items-center justify-between p-24">
|
|
<div className="z-10 max-w-5xl w-full items-center justify-between font-mono text-sm">
|
|
<News />
|
|
<Duties />
|
|
<Parole />
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|