diff --git a/.github/ISSUE_TEMPLATE/wiki.yml b/.github/ISSUE_TEMPLATE/wiki.yml
index 5cf6f461c..17cf6c819 100644
--- a/.github/ISSUE_TEMPLATE/wiki.yml
+++ b/.github/ISSUE_TEMPLATE/wiki.yml
@@ -1,6 +1,6 @@
name: Create Issue
description: 'Help us improve FMHY for everyone'
-title: '
'
+title: 'Issue form title'
body:
- type: markdown
attributes:
diff --git a/docs/.vitepress/theme/Appearance.vue b/docs/.vitepress/theme/Appearance.vue
index d2a81f015..6ea9f544c 100644
--- a/docs/.vitepress/theme/Appearance.vue
+++ b/docs/.vitepress/theme/Appearance.vue
@@ -29,8 +29,8 @@ onMounted(() => {
>
-
-
+
+
diff --git a/docs/.vitepress/theme/components/ColorPicker.vue b/docs/.vitepress/theme/components/ColorPicker.vue
new file mode 100644
index 000000000..3615c4821
--- /dev/null
+++ b/docs/.vitepress/theme/components/ColorPicker.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+ Selected: {{ normalizeColorName(selectedColor) }}
+
+
+
diff --git a/docs/.vitepress/theme/components/Feedback.vue b/docs/.vitepress/theme/components/Feedback.vue
index 38a1c5dc5..847ba5e96 100644
--- a/docs/.vitepress/theme/components/Feedback.vue
+++ b/docs/.vitepress/theme/components/Feedback.vue
@@ -69,10 +69,12 @@ const isDisabled = computed(() => {
})
const router = useRouter()
-// prettier-ignore
-const feedback = reactive<
- Pick & Partial>
->({
+
+const feedback = reactive<{
+ message: string
+ page: string
+ type?: FeedbackType['type']
+}>({
page: router.route.path,
message: ''
})
@@ -142,17 +144,45 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
-
+
+
+
+
+
+ Got feedback?
+
+
+ We'd love to know what you think about this page.
+
+
+
+
+
+
+
+
@@ -254,7 +284,7 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)