diff --git a/public/china.json b/src/assets/china.json
similarity index 100%
rename from public/china.json
rename to src/assets/china.json
diff --git a/src/components/dashboard/Map.vue b/src/components/dashboard/Map.vue
index e83c2e8..0543d4f 100644
--- a/src/components/dashboard/Map.vue
+++ b/src/components/dashboard/Map.vue
@@ -5,20 +5,20 @@
-
-
\ No newline at end of file
+onMounted(() => {
+ matchMedia('(prefers-color-scheme: light)').addEventListener('change', (e) => {
+ const color = option.value.visualMap as { textStyle: { color: string } };
+ if (e.matches) {
+ color.textStyle.color = '#000'
+ } else {
+ color.textStyle.color = '#fff'
+ }
+ })
+})
+
\ No newline at end of file
diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue
index c56bc6b..dba521e 100644
--- a/src/views/HomeView.vue
+++ b/src/views/HomeView.vue
@@ -1,8 +1,44 @@
- 欢迎来到 EasyTierMC Uptime
+ 欢迎来到 EasyTierMC Uptime
使用上方导航查看节点监控或提交新的节点。
-
+
+
+
+