frontend: add loginNeeded component

This commit is contained in:
Kentai Radiquum 2024-04-21 21:10:08 +05:00
parent dcce13b86b
commit b9af35ee75
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,15 @@
"use client";
import Link from "next/link";
export const LogInNeeded = (props) => {
return (
<div className="absolute padding error center middle round">
<i className="extra">no_accounts</i>
<h5>Требуется авторизация</h5>
<p>
Для доступа к этой вкладке требуется авторизация в аккаунте anixart
</p>
</div>
);
};

View file

@ -17,7 +17,8 @@ body {
}
} */
body, nav.left{
body, nav.left, main{
transition: background .2s;
transform-origin: left;
min-height: 100dvh;
}

View file

@ -0,0 +1,10 @@
"use client";
import { LogInNeeded } from "@/app/components/LogInNeeded/LogInNeeded";
import { useUserStore } from "@/app/store/user-store";
export default History = () => {
const userStore = useUserStore();
return <>{!userStore.isAuth ? <LogInNeeded /> : ""}</>;
};