diff --git a/components.d.ts b/components.d.ts
index b871514..104cc60 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -55,6 +55,7 @@ declare module 'vue' {
Home: typeof import('./src/components/icons/Home.vue')['default']
ImageIcon: typeof import('./src/components/icons/ImageIcon.vue')['default']
InfoIcon: typeof import('./src/components/icons/InfoIcon.vue')['default']
+ LanguageIcon: typeof import('./src/components/icons/LanguageIcon.vue')['default']
Layout: typeof import('./src/components/icons/Layout.vue')['default']
LayoutDashboard: typeof import('./src/components/icons/LayoutDashboard.vue')['default']
LinkIcon: typeof import('./src/components/icons/LinkIcon.vue')['default']
@@ -144,6 +145,7 @@ declare global {
const Home: typeof import('./src/components/icons/Home.vue')['default']
const ImageIcon: typeof import('./src/components/icons/ImageIcon.vue')['default']
const InfoIcon: typeof import('./src/components/icons/InfoIcon.vue')['default']
+ const LanguageIcon: typeof import('./src/components/icons/LanguageIcon.vue')['default']
const Layout: typeof import('./src/components/icons/Layout.vue')['default']
const LayoutDashboard: typeof import('./src/components/icons/LayoutDashboard.vue')['default']
const LinkIcon: typeof import('./src/components/icons/LinkIcon.vue')['default']
diff --git a/src/components/icons/LanguageIcon.vue b/src/components/icons/LanguageIcon.vue
new file mode 100644
index 0000000..7c61e9e
--- /dev/null
+++ b/src/components/icons/LanguageIcon.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/composables/useSettingsPreferencesQuery.ts b/src/composables/useSettingsPreferencesQuery.ts
index 8801370..f864277 100644
--- a/src/composables/useSettingsPreferencesQuery.ts
+++ b/src/composables/useSettingsPreferencesQuery.ts
@@ -1,6 +1,6 @@
import { client as rpcClient } from '@/api/rpcclient';
-import type { Preferences } from '@/server/gen/proto/app/v1/common';
-import type { UpdatePreferencesRequest } from '@/server/gen/proto/app/v1/account';
+import type { Preferences } from '@/server/api/proto/app/v1/common';
+import type { UpdatePreferencesRequest } from '@/server/api/proto/app/v1/account';
import { useQuery } from '@pinia/colada';
export const SETTINGS_PREFERENCES_QUERY_KEY = ['settings', 'preferences'] as const;
diff --git a/src/mocks/videos.ts b/src/mocks/videos.ts
index 0ca60db..f5608f3 100644
--- a/src/mocks/videos.ts
+++ b/src/mocks/videos.ts
@@ -1,4 +1,4 @@
-import type { Video as ModelVideo } from "@/server/gen/proto/app/v1/common";
+import type { Video as ModelVideo } from "@/server/api/proto/app/v1/common";
export const mockVideos: ModelVideo[] = [
{
diff --git a/src/routes/overview/Overview.vue b/src/routes/overview/Overview.vue
index 98143f6..f2e239a 100644
--- a/src/routes/overview/Overview.vue
+++ b/src/routes/overview/Overview.vue
@@ -1,6 +1,6 @@