Revert "modified: src/app/page.tsx"

This reverts commit 6522a256b9700628d735a5676fe949465c666359.
This commit is contained in:
ZareMate 2025-04-14 09:40:39 +02:00
parent 6522a256b9
commit 49483f9109
Signed by: zaremate
GPG Key ID: 369A0E45E03A81C3
3 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,6 @@ import { HydrateClient } from "~/trpc/server";
import FileGrid from "~/app/_components/FileGrid";
import UploadForm from "~/app/_components/UploadForm";
import { Toaster } from "react-hot-toast";
import { signIn, signOut } from "next-auth/react";
export default async function Home() {
const session = await auth();
@ -43,12 +42,14 @@ export default async function Home() {
)}
{!session?.user && (
<div className="flex flex-col items-center gap-2">
<button
onClick={() => (session ? signOut() : signIn())}
<div className="flex flex-col items-center justify-center gap-4">
<Link
href={session ? "/api/auth/signout" : "/api/auth/signin"}
className="rounded-full bg-white/10 px-10 py-3 font-semibold no-underline transition hover:bg-white/20"
>
{session ? "Sign out" : "Sign in"}
</button>
</Link>
</div>
</div>
)}
</div>

View File

@ -8,7 +8,6 @@ import { createCaller, type AppRouter } from "~/server/api/root";
import { createTRPCContext } from "~/server/api/trpc";
import { createQueryClient } from "./query-client";
/**
* This wraps the `createTRPCContext` helper and provides the required context for the tRPC API when
* handling a tRPC call from a React Server Component.