Add DSGVO-compliant cookie consent banner and fix navbar consistency
- Implement custom cookie consent banner with opt-in gating pattern - Add comprehensive privacy documentation (DSGVO/GDPR compliant) - Integrate consent management into production (index.html) - Add multilingual support for cookie settings (DE/EN) - Fix navbar font-size inconsistency across legal pages - Include mobile.css in datenschutz.html and impressum.html - Add complete implementation documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Dieser Commit ist enthalten in:
11
index.html
11
index.html
@ -11,6 +11,7 @@
|
||||
<link rel="stylesheet" href="css/products-modern.css">
|
||||
<link rel="stylesheet" href="css/fonts.css">
|
||||
<link rel="stylesheet" href="css/mobile.css">
|
||||
<link rel="stylesheet" href="cookie-consent.css">
|
||||
</head>
|
||||
<body>
|
||||
<!-- Skip Navigation -->
|
||||
@ -408,6 +409,7 @@
|
||||
<ul>
|
||||
<li><a href="impressum.html" data-translate="footerImprint">Impressum</a></li>
|
||||
<li><a href="datenschutz.html" data-translate="footerPrivacy">Datenschutz</a></li>
|
||||
<li><a href="#" id="cookie-settings-link" data-translate="footerCookies">Cookie-Einstellungen</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
@ -422,6 +424,10 @@
|
||||
<!-- JavaScript Files -->
|
||||
<script src="js/protection.js"></script>
|
||||
<script src="js/config.js"></script>
|
||||
|
||||
<!-- Cookie Consent (MUSS vor Analytics geladen werden!) -->
|
||||
<script src="cookie-consent.js"></script>
|
||||
|
||||
<script src="js/translations.js"></script>
|
||||
<script src="js/animations.js"></script>
|
||||
<script src="js/animations-enhanced.js"></script>
|
||||
@ -430,7 +436,8 @@
|
||||
<script src="js/components.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
<script src="js/mobile-nav.js"></script>
|
||||
<!-- IntelSight Analytics -->
|
||||
<script async src="/insights/t.js"></script>
|
||||
|
||||
<!-- IntelSight Analytics wird automatisch durch Cookie Consent geladen -->
|
||||
<!-- <script async src="/insights/t.js"></script> ENTFERNT - wird nur bei Zustimmung geladen! -->
|
||||
</body>
|
||||
</html>
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren