diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e305237..36f04cb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,3 +14,8 @@
- 🚧工作中(勿动)
......
```
+## [V 1.0.0] - 2023.4.20
+### console-ui
+- 🧹重构: 重构console-ui,使用vue3.0,vite,typescript进行重构
+
+
diff --git a/console-ui/.browserslistrc b/console-ui/.browserslistrc
new file mode 100644
index 0000000..dc3bc09
--- /dev/null
+++ b/console-ui/.browserslistrc
@@ -0,0 +1,4 @@
+> 1%
+last 2 versions
+not dead
+not ie 11
diff --git a/console-ui/.editorconfig b/console-ui/.editorconfig
new file mode 100644
index 0000000..7053c49
--- /dev/null
+++ b/console-ui/.editorconfig
@@ -0,0 +1,5 @@
+[*.{js,jsx,ts,tsx,vue}]
+indent_style = space
+indent_size = 2
+trim_trailing_whitespace = true
+insert_final_newline = true
diff --git a/console-ui/.env.dev b/console-ui/.env.dev
new file mode 100644
index 0000000..41fe281
--- /dev/null
+++ b/console-ui/.env.dev
@@ -0,0 +1,10 @@
+
+
+# Firebase 🔥
+VITE_FIREBASE_API_KEY=
+VITE_FIREBASE_AUTH_DOMAIN=
+VITE_FIREBASE_PROJECT_ID=
+VITE_FIREBASE_STORAGE_BUCKET=
+VITE_FIREBASE_MESSAGING_SENDER_ID=
+VITE_FIREBASE_APP_ID=
+VITE_FIREBASE_MEASUREMENT_ID=
\ No newline at end of file
diff --git a/console-ui/.env.pro b/console-ui/.env.pro
new file mode 100644
index 0000000..4c54fb0
--- /dev/null
+++ b/console-ui/.env.pro
@@ -0,0 +1 @@
+VITE_API_BASE_URL=https://api.example.com
diff --git a/console-ui/.env.template b/console-ui/.env.template
new file mode 100644
index 0000000..a604b2c
--- /dev/null
+++ b/console-ui/.env.template
@@ -0,0 +1,3 @@
+VITE_OPENAI_API_KEY = XXXXXXXXXXXX
+VITE_UNSPLASH_ACCESS_KEY = XXXXXXXXXXXX
+VITE_GITHUB_CLIENT_ID = XXXXXXXXXXXX
\ No newline at end of file
diff --git a/console-ui/.gitattributes b/console-ui/.gitattributes
new file mode 100644
index 0000000..dfe0770
--- /dev/null
+++ b/console-ui/.gitattributes
@@ -0,0 +1,2 @@
+# Auto detect text files and perform LF normalization
+* text=auto
diff --git a/console-ui/.gitignore b/console-ui/.gitignore
index 403adbc..172bdeb 100644
--- a/console-ui/.gitignore
+++ b/console-ui/.gitignore
@@ -1,9 +1,11 @@
.DS_Store
node_modules
/dist
+/.vite_cache
# local env files
+.env
.env.local
.env.*.local
@@ -21,3 +23,7 @@ pnpm-debug.log*
*.njsproj
*.sln
*.sw?
+
+# Local Netlify folder
+.netlify
+.env
diff --git a/console-ui/LICENSE b/console-ui/LICENSE
new file mode 100644
index 0000000..bb0f0da
--- /dev/null
+++ b/console-ui/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 jk.yang
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/console-ui/README.jp.md b/console-ui/README.jp.md
new file mode 100644
index 0000000..d48ea29
--- /dev/null
+++ b/console-ui/README.jp.md
@@ -0,0 +1,120 @@
+