Files
internetforkids/layouts/shortcodes/addiction-stats.html
Christian Gick a81e42c8e4
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 14s
Deploy Internet for Kids / Deploy (push) Successful in 6s
Deploy Internet for Kids / Health Check (push) Successful in 2s
Deploy Internet for Kids / Smoke Tests (push) Successful in 3s
Deploy Internet for Kids / IndexNow Ping (push) Successful in 7s
Deploy Internet for Kids / Promote to Latest (push) Successful in 2s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 2s
stack stats vertically: chart on top, 3 stat cards in a row below
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 07:23:40 +03:00

104 lines
3.8 KiB
HTML

{{/* Addiction stats — horizontal bar chart + stat cards for health impact */}}
{{ $lang := .Page.Language.Lang }}
<style>
.addiction-stats { margin: 2.5rem 0; }
.addiction-chart-card {
background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
padding: 1.5rem; text-align: center; margin-bottom: 1.5rem;
}
.addiction-chart-card h4 {
margin: 0 0 1rem; font-size: 0.9rem; color: #334155;
font-family: system-ui, sans-serif;
}
.addiction-impact-cards {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.addiction-impact-card {
background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
padding: 1.25rem; text-align: center;
}
.addiction-impact-num {
font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem;
font-family: system-ui, sans-serif;
}
.addiction-impact-desc {
font-size: 0.8rem; color: #475569; line-height: 1.35;
font-family: system-ui, sans-serif;
}
@media (max-width: 640px) {
.addiction-impact-cards { grid-template-columns: 1fr; }
}
</style>
<div class="addiction-stats">
<div class="addiction-chart-card">
<h4>{{ if eq $lang "de" }}Jugendliche & Social Media{{ else if eq $lang "fr" }}Adolescents & réseaux sociaux{{ else }}Teens & Social Media{{ end }}</h4>
<canvas id="addiction-usage-chart"></canvas>
</div>
<div class="addiction-impact-cards">
<div class="addiction-impact-card">
<div class="addiction-impact-num" style="color:#667eea">5h</div>
<div class="addiction-impact-desc">{{ if eq $lang "de" }}Durchschnittliche tägliche Nutzung{{ else if eq $lang "fr" }}Utilisation quotidienne moyenne{{ else }}Average daily use{{ end }}</div>
</div>
<div class="addiction-impact-card">
<div class="addiction-impact-num" style="color:#ef4444">2-3x</div>
<div class="addiction-impact-desc">{{ if eq $lang "de" }}Suizidgedanken-Risiko bei Abhängigkeit{{ else if eq $lang "fr" }}Risque d'idéation suicidaire{{ else }}Suicidal ideation risk with addiction{{ end }}</div>
</div>
<div class="addiction-impact-card">
<div class="addiction-impact-num" style="color:#764ba2">3h+</div>
<div class="addiction-impact-desc">{{ if eq $lang "de" }}Schwelle für erhöhte Angst & Depression{{ else if eq $lang "fr" }}Seuil d'anxiété & dépression accrues{{ else }}Threshold for increased anxiety & depression{{ end }}</div>
</div>
</div>
</div>
<script src="{{ "js/chart.umd.min.js" | relURL }}"></script>
<script>
(function() {
const lang = '{{ $lang }}';
const labels = {
en: ['Use social media\nregularly', 'Feel addicted', 'Sleep negatively\naffected', '3+ hours/day'],
de: ['Nutzen Social Media\nregelmäßig', 'Fühlen sich\nsüchtig', 'Schlaf negativ\nbeeinflusst', '3+ Stunden/Tag'],
fr: ['Utilisent les\nréseaux sociaux', 'Se sentent\ndépendants', 'Sommeil\nnégativement affecté', '3+ heures/jour']
};
new Chart(document.getElementById('addiction-usage-chart'), {
type: 'bar',
data: {
labels: labels[lang] || labels.en,
datasets: [{
data: [95, 47, 45, 63],
backgroundColor: ['#667eea', '#764ba2', '#a78bfa', '#c4b5fd'],
borderRadius: 6,
barThickness: 28
}]
},
options: {
indexAxis: 'y',
responsive: true,
maintainAspectRatio: true,
plugins: {
legend: { display: false },
tooltip: {
callbacks: { label: function(ctx) { return ctx.raw + '%'; } }
}
},
scales: {
x: {
max: 100,
ticks: {
callback: function(v) { return v + '%'; },
font: { size: 11, family: 'system-ui' }
},
grid: { color: '#f1f5f9' }
},
y: {
ticks: { font: { size: 11, family: 'system-ui' }, autoSkip: false },
grid: { display: false }
}
}
}
});
})();
</script>