diff --git a/frontend/pages/profile.vue b/frontend/pages/profile.vue
index a564844..ed031a2 100644
--- a/frontend/pages/profile.vue
+++ b/frontend/pages/profile.vue
@@ -10,6 +10,13 @@
title: "Homebox | Profile",
});
+ const pubApi = usePublicApi();
+ const { data: status } = useAsyncData(async () => {
+ const { data } = await pubApi.status();
+
+ return data;
+ });
+
const { setTheme } = useTheme();
type ThemeOption = {
@@ -341,6 +348,9 @@
+