diff --git a/packages/frontend/src/components/auth-provider.tsx b/packages/frontend/src/components/auth-provider.tsx index 498f86c..9c24255 100644 --- a/packages/frontend/src/components/auth-provider.tsx +++ b/packages/frontend/src/components/auth-provider.tsx @@ -1,4 +1,5 @@ import type { UserRecord } from "@issue/shared"; +import { AlertTriangle } from "lucide-react"; import { useEffect, useRef, useState } from "react"; import Loading from "@/components/loading"; import LogInForm from "@/components/login-form"; @@ -48,6 +49,18 @@ export function Auth({ children }: AuthProviderProps) { if (loggedIn === false) return (
+ {/* under construction warning */} +
+ +

+ This application is currently under construction. Your data is very likely to be lost + at some point. +

 
+

+ It is not recommended for production use. +

+

+
);