diff --git a/frontend/app/pages/dashboard/student/profile/index.vue b/frontend/app/pages/dashboard/student/profile/index.vue
new file mode 100644
index 0000000..136a707
--- /dev/null
+++ b/frontend/app/pages/dashboard/student/profile/index.vue
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Osobné údaje
+
+
+ Meno
+ {{ user?.first_name || '—' }}
+
+
+
+ Priezvisko
+ {{ user?.last_name || '—' }}
+
+
+
+ Adresa
+ {{ user?.student_data?.address || '—' }}
+
+
+
+ Študijný odbor
+ {{ user?.student_data?.study_field || '—' }}
+
+
+
+
+
+
+ Kontaktné údaje
+
+
+ Študentský email
+ {{ user?.email || '—' }}
+
+
+
+ Alternatívny email
+ {{ user?.student_data?.personal_email || '—' }}
+
+
+
+ Telefón
+ {{ user?.phone || '—' }}
+
+
+
+
+ Zmeniť heslo
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+