import { redirect } from "next/navigation"; import { auth } from "@/lib/auth"; import SignOut from "@/app/components/sign-out"; import Guilds from "@/app/components/Guilds"; export default async function Home() { const session = await auth(); if (!session) redirect("/"); return ( <>
Settings

Logging

Channel 1

Channel 2

Quote of the Day

LLM Chatbot

) }