From 1ecf7b6ba7e0702175710943c7ac6cc4ef7f4434 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Mon, 27 Apr 2026 14:24:42 +0200 Subject: [PATCH] Add Ratgeber section with new routes and links - Introduced a new "Ratgeber" link in ImprintContainer.vue for better user navigation. - Added multiple routes for the Ratgeber section, including GuideHubView, GuideFirstMessageView, GuideProfileView, GuideSafetyView, and GuideRedFlagsView, enhancing content accessibility. - Implemented SEO metadata for the new routes to improve search engine visibility and user engagement. These changes collectively enhance the site's informational resources and improve navigation for users seeking guidance on chat-related topics. --- client/src/components/ImprintContainer.vue | 1 + client/src/router/index.js | 94 ++++++++++++++++ client/src/views/ChatView.vue | 2 + client/src/views/GuideFirstMessageView.vue | 82 ++++++++++++++ client/src/views/GuideHubView.vue | 118 +++++++++++++++++++++ client/src/views/GuideProfileView.vue | 82 ++++++++++++++ client/src/views/GuideRedFlagsView.vue | 74 +++++++++++++ client/src/views/GuideSafetyView.vue | 77 ++++++++++++++ 8 files changed, 530 insertions(+) create mode 100644 client/src/views/GuideFirstMessageView.vue create mode 100644 client/src/views/GuideHubView.vue create mode 100644 client/src/views/GuideProfileView.vue create mode 100644 client/src/views/GuideRedFlagsView.vue create mode 100644 client/src/views/GuideSafetyView.vue diff --git a/client/src/components/ImprintContainer.vue b/client/src/components/ImprintContainer.vue index 6361b49..62211b9 100644 --- a/client/src/components/ImprintContainer.vue +++ b/client/src/components/ImprintContainer.vue @@ -1,6 +1,7 @@