Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
<SignedIn>
import { SignedIn } from "@kobbleio/next/client"; export default function Home() { return ( <SignedIn> <span>Your're authenticated</span> </SignedIn> ); }
<SignedOut>
import { SignedIn, SignedOut } from "@kobbleio/next/client"; export default function Home() { return ( <> <SignedIn> <span>Your're authenticated</span> </SignedIn> <SignedOut> <span>Your're not authenticated</span> </SignedOut> </> ); }