+ {loadingLnurl &&
+
+
Fetching Lnurl-Auth...
+
}
+ {!loadingLnurl &&
+ (isLoggedIn ?
+
+
+ Hello: @{meQuery.data?.me?.name.slice(0, 10)}...
+
+

+
:
+
+ )}
+
+ )
+}
diff --git a/src/features/Auth/pages/LogoutPage/LogoutPage.tsx b/src/features/Auth/pages/LogoutPage/LogoutPage.tsx
new file mode 100644
index 0000000..c8417e9
--- /dev/null
+++ b/src/features/Auth/pages/LogoutPage/LogoutPage.tsx
@@ -0,0 +1,33 @@
+import { useEffect, useState } from "react"
+import { BsFillLightningChargeFill } from "react-icons/bs";
+import { Grid, LineWave } from "react-loader-spinner";
+import { useNavigate } from "react-router-dom";
+
+
+export default function LoginPage() {
+
+ const navigate = useNavigate();
+
+ useEffect(() => {
+ fetch(process.env.REACT_APP_AUTH_END_POINT! + '/logout', {
+ method: "GET",
+ 'credentials': "include"
+ })
+ .then(() => {
+ window.location.pathname = '/'
+ })
+ .catch(() => {
+ window.location.pathname = '/'
+ })
+ }, [navigate])
+
+
+ return (
+