Initial commit
Dieser Commit ist enthalten in:
30
frontend/public/debug.html
Normale Datei
30
frontend/public/debug.html
Normale Datei
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Debug Test</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Debug Test</h1>
|
||||
<div id="root">
|
||||
<p>Wenn Sie diesen Text sehen, funktioniert HTML.</p>
|
||||
</div>
|
||||
<script>
|
||||
console.log('HTML geladen');
|
||||
|
||||
// Test ob process definiert ist
|
||||
try {
|
||||
console.log('process:', typeof process);
|
||||
} catch (e) {
|
||||
console.log('process ist nicht definiert - das ist normal in Electron Renderer');
|
||||
}
|
||||
|
||||
// Test React mount point
|
||||
const root = document.getElementById('root');
|
||||
if (root) {
|
||||
console.log('Root element gefunden');
|
||||
root.innerHTML += '<p>JavaScript funktioniert!</p>';
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
11
frontend/public/icon.svg
Normale Datei
11
frontend/public/icon.svg
Normale Datei
@ -0,0 +1,11 @@
|
||||
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="256" height="256" rx="32" fill="#3182CE"/>
|
||||
<g transform="translate(48, 48)">
|
||||
<circle cx="80" cy="40" r="24" fill="white" opacity="0.9"/>
|
||||
<path d="M40 80 C40 60, 60 50, 80 50 C100 50, 120 60, 120 80 L120 120 C120 130, 110 140, 100 140 L60 140 C50 140, 40 130, 40 120 Z" fill="white" opacity="0.9"/>
|
||||
<rect x="0" y="100" width="60" height="8" rx="4" fill="white" opacity="0.7"/>
|
||||
<rect x="0" y="120" width="80" height="8" rx="4" fill="white" opacity="0.7"/>
|
||||
<rect x="100" y="100" width="60" height="8" rx="4" fill="white" opacity="0.7"/>
|
||||
<rect x="80" y="120" width="80" height="8" rx="4" fill="white" opacity="0.7"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Nachher Breite: | Höhe: | Größe: 767 B |
In neuem Issue referenzieren
Einen Benutzer sperren