- Introduced localized SEO metadata for multiple languages in routes-seo.js, improving search engine visibility. - Updated descriptions and keywords across various views (Home, Partners, Feedback, FAQ, Rules, Safety) to better reflect the platform's focus on private and anonymous chatting. - Enhanced user guidance in FAQ, Partners, Rules, and Safety views with additional context on privacy and chat functionality. These changes collectively improve the site's SEO performance and user experience by providing clearer, localized content.
77 lines
2.1 KiB
Vue
77 lines
2.1 KiB
Vue
<template>
|
||
<div class="chat-container">
|
||
<header class="header">
|
||
<div class="app-brand">
|
||
<span class="app-brand-mark">S</span>
|
||
<div class="app-brand-copy">
|
||
<span class="app-brand-eyebrow">SingleChat</span>
|
||
<h1>Sicherheit</h1>
|
||
</div>
|
||
</div>
|
||
<HeaderAdBanner />
|
||
</header>
|
||
|
||
<main class="content-page">
|
||
<h2>Sicherheit & Privatsphäre</h2>
|
||
<p>
|
||
SingleChat ist auf schnellen Einstieg ausgelegt – trotzdem ist uns Sicherheit wichtig. Diese Hinweise helfen dir,
|
||
im privaten und anonymen Chat deine Privatsphäre zu schützen und gute Entscheidungen zu treffen.
|
||
</p>
|
||
|
||
<h3>Empfehlungen für sichere Nutzung</h3>
|
||
<ul>
|
||
<li>Nutze einen Nickname, der dich nicht identifiziert.</li>
|
||
<li>Teile keine Kontakt- oder Zahlungsdaten.</li>
|
||
<li>Sei vorsichtig bei Links/Dateien von unbekannten Personen.</li>
|
||
<li>Beende Gespräche, die dir unangenehm sind.</li>
|
||
</ul>
|
||
|
||
<h3>Blockieren und melden</h3>
|
||
<p>
|
||
Du kannst Benutzer blockieren. Für harte Fälle (Spam, Belästigung, strafbare Inhalte) nutze bitte die
|
||
<router-link to="/feedback">Feedback-Seite</router-link> und gib Zeitpunkt, Nickname und eine kurze Beschreibung
|
||
an.
|
||
</p>
|
||
|
||
<h3>Datenschutz</h3>
|
||
<p>
|
||
Details findest du im Impressum/Datenschutz-Hinweis unten auf der Seite. Wenn du Fragen hast, kontaktiere uns
|
||
gern über Feedback. Für den respektvollen Umgang im Chat beachte zusätzlich unsere
|
||
<router-link to="/regeln">Chat-Regeln</router-link>.
|
||
</p>
|
||
</main>
|
||
|
||
<ImprintContainer />
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import HeaderAdBanner from '../components/HeaderAdBanner.vue';
|
||
import ImprintContainer from '../components/ImprintContainer.vue';
|
||
</script>
|
||
|
||
<style scoped>
|
||
.content-page {
|
||
max-width: 980px;
|
||
margin: 0 auto;
|
||
padding: 20px 14px 36px;
|
||
line-height: 1.6;
|
||
color: #344038;
|
||
}
|
||
|
||
.content-page h2 {
|
||
margin: 0 0 10px;
|
||
color: #18201b;
|
||
}
|
||
|
||
.content-page h3 {
|
||
margin: 18px 0 6px;
|
||
color: #18201b;
|
||
}
|
||
|
||
.content-page a {
|
||
color: #245c3a;
|
||
}
|
||
</style>
|
||
|