Skip to content

Instantly share code, notes, and snippets.

@ibrahimyilmaz7
Last active February 22, 2026 02:16
Show Gist options
  • Select an option

  • Save ibrahimyilmaz7/3c1e7abc5544e0c71b8e3e8d78115bb6 to your computer and use it in GitHub Desktop.

Select an option

Save ibrahimyilmaz7/3c1e7abc5544e0c71b8e3e8d78115bb6 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Abakus Support</title>
<style>
:root {
--bg: #f7f7f5;
--card: #ffffff;
--text: #1f2937;
--muted: #4b5563;
--accent: #2563eb;
--border: #e5e7eb;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.55;
}
.wrap {
max-width: 760px;
margin: 40px auto;
padding: 0 16px;
}
.card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 14px;
padding: 24px;
}
h1 { margin: 0 0 12px; font-size: 1.9rem; }
h2 { margin: 24px 0 8px; font-size: 1.15rem; }
p, li { color: var(--muted); }
ul { margin: 8px 0 0 20px; padding: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.email { font-weight: 600; color: var(--text); }
</style>
</head>
<body>
<main class="wrap">
<section class="card">
<h1>Abakus Support</h1>
<p>Du brauchst Hilfe mit <strong>Abakus: Lohn &amp; Finanzen</strong>? Wir unterstützen dich gerne.</p>
<h2>Kontakt</h2>
<p>
E-Mail:
<a class="email" href="mailto:abakus.app@proton.me">abakus.app@proton.me</a><br />
Du kannst uns auf Deutsch oder Englisch schreiben.
</p>
<h2>Bitte in der Nachricht angeben</h2>
<p>Damit wir dir schneller helfen können, sende bitte:</p>
<ul>
<li>App-Version (Abakus Version)</li>
<li>iPhone-Modell</li>
<li>iOS-Version</li>
<li>Land/Region</li>
<li>Kurze Problembeschreibung</li>
<li>Screenshots (wenn möglich)</li>
</ul>
<h2>Häufige Themen</h2>
<ul>
<li>Fragen zur Berechnung (Brutto/Netto)</li>
<li>Einstellungen zu Steuerklasse und Bundesland</li>
<li>Kirchensteuer und Sozialversicherungs-Eingaben</li>
<li>App-Verhalten, Fehler oder Abstürze</li>
<li>Feedback und Funktionswünsche</li>
</ul>
<h2>Wichtiger Hinweis</h2>
<p>
Abakus liefert Schätzwerte zu Informationszwecken und ersetzt keine Steuerberatung.
Für verbindliche Ergebnisse wende dich bitte an eine Steuerberatung oder offizielle Stellen.
</p>
<h2>Datenschutz</h2>
<p>
Datenschutzerklärung:
<a href="https://gistcdn.githack.com/ibrahimyilmaz7/5ed90d15f1a1e785f8738ee7b5450bd4/raw/0f5dbca9ff4264291781f58708ee48322a05b171/abakus_privacy.html" target="_blank" rel="noopener noreferrer">
Privacy Policy
</a>
</p>
</section>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment