diff --git a/app/components/content/Stats.vue b/app/components/content/Stats.vue
index 3e045ae..d58556f 100644
--- a/app/components/content/Stats.vue
+++ b/app/components/content/Stats.vue
@@ -1,7 +1,7 @@
@@ -13,7 +13,9 @@ const stats = await $fetch('/api/stats')
}} hours.
My best editors are
{{ stats.editors.data.slice(0, 2).map(editor => `${editor.name} (${editor.percent}%)`).join(' and ') }}.
+
My best OS is {{ stats.os.data[0].name }} ({{ stats.os.data[0].percent }}%).
+
My top languages are
{{ stats.languages.data.slice(0, 2).map(language => `${language.name} (${language.percent}%)`).join(' and ') }}.