feat(frontend): add files
build / Go-Build (push) Failing after 15s

This commit is contained in:
2026-06-24 11:58:59 +02:00
parent 8f59f80eb2
commit d1d49ecc49
39 changed files with 3607 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
import React from 'react';
import { Lock } from 'lucide-react';
import './LockScreen.css';
interface LockScreenProps {
message?: string;
}
export const LockScreen: React.FC<LockScreenProps> = ({ message = "Voting oder Zählung noch nicht abgeschlossen" }) => {
return (
<div className="lock-screen panel">
<div className="lock-icon-container">
<Lock size={48} className="lock-icon" />
</div>
<h2 className="lock-title">Derzeit Gesperrt</h2>
<p className="lock-message">{message}</p>
</div>
);
};