Index: components/Navbar.tsx
===================================================================
--- components/Navbar.tsx	(revision 40ac7a920a0b08c324bf4201b03a36483cc3aad4)
+++ components/Navbar.tsx	(revision 67dfe576d088a64527df41c04054063cbba96c6d)
@@ -7,6 +7,6 @@
 import Box from "@mui/material/Box";
 import { styled } from "@mui/material/styles";
-import { fetchAuthState } from "../pages/auth/authState.telefunc";
 import LogoUrl from '../assets/projectlogo.png';
+import {onGetAuthState} from "../pages/+Layout.telefunc";
 
 
@@ -25,5 +25,5 @@
     useEffect(() => {
         let active = true;
-        fetchAuthState()
+        onGetAuthState()
             .then((data) => active && setAuth({ isLoggedIn: data.isLoggedIn, username: data.username }))
             .catch(() => active && setAuth({ isLoggedIn: false, username: null }));
Index: pages/+Layout.telefunc.ts
===================================================================
--- pages/+Layout.telefunc.ts	(revision 40ac7a920a0b08c324bf4201b03a36483cc3aad4)
+++ pages/+Layout.telefunc.ts	(revision 67dfe576d088a64527df41c04054063cbba96c6d)
@@ -4,5 +4,5 @@
 import type {Database} from "../database/drizzle/db";
 
-export async function AuthenticationState() {
+export async function onGetAuthState() {
     const context = getAuthState();
 
Index: pages/index/+Page.tsx
===================================================================
--- pages/index/+Page.tsx	(revision 40ac7a920a0b08c324bf4201b03a36483cc3aad4)
+++ pages/index/+Page.tsx	(revision 67dfe576d088a64527df41c04054063cbba96c6d)
@@ -16,5 +16,5 @@
 
 import { onGetHighestRankedBuilds, onCloneBuild } from './buildCards.telefunc';
-import { onGetApprovedBuilds } from '../+Layout.telefunc';
+import {onGetApprovedBuilds, onGetAuthState} from '../+Layout.telefunc';
 import {getAuthState} from "../../server/telefunc/ctx"; //
 
@@ -33,5 +33,5 @@
                     authData, highestRankedBuilds, commnityBuilds
                 ] = await Promise.all([
-                    getAuthState(),
+                    onGetAuthState(),
                     onGetHighestRankedBuilds({ limit: 3 }),
                     onGetApprovedBuilds({ limit: 12 })
