Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update copy for contact page #928

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/components/Pages/Contact.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<template>

Check warning on line 1 in src/components/Pages/Contact.vue

View workflow job for this annotation

GitHub Actions / build (22)

Component name "Contact" should always be multi-word
<v-main>
<v-responsive max-width="840px" min-width="250px" >
<h1>Get in touch with the team</h1>
<p>Thank you for your interest. We really want to hear what you've got to say.</p>
<p>Have you got a question? First, check our <a href="https://www.mediawiki.org/wiki/Wikibase/FAQ" target="_blank">FAQ</a> to see if we've already answered it. We're constantly updating it with new questions. if you don't find an answer there, feel free to use the contact form below. Thanks!</p>
<p>Thank you for your interest. We want to hear what you've got to say.</p>
<p>Have you got a question? First, check our <a href="https://www.mediawiki.org/wiki/Wikibase/FAQ" target="_blank">FAQ</a> to see if we've already answered it. We're constantly updating it with new questions. If you don't find an answer there, feel free to use the contact form below. Thanks!</p>
<p>Please note that despite our best efforts it can take up to two weeks to receive a response. Thank you for your patience.</p>
<h3>Want to connect with the Wikibase.cloud community?</h3>
<p>You can visit our <a href="https://t.me/joinchat/FgqAnxNQYOeAKmyZTIId9g" target="_blank">Telegram channel</a> or join our <a href="https://lists.wikimedia.org/postorius/lists/wikibase-cloud.lists.wikimedia.org/" target="_blank">mailing list</a>.</p>
<p>You can visit our <a href="https://t.me/joinchat/FgqAnxNQYOeAKmyZTIId9g" target="_blank">Telegram group</a> or join our <a href="https://lists.wikimedia.org/postorius/lists/wikibase-cloud.lists.wikimedia.org/" target="_blank">mailing list</a>.</p>
<v-responsive max-width="512px">
<h2 class="mt-10 mb-2">Contact Us</h2>
<v-text-field
Expand Down Expand Up @@ -101,8 +102,8 @@
this.$recaptcha('contact').then((recaptcha) => {
this.$api.contact(
{
name: name,

Check warning on line 105 in src/components/Pages/Contact.vue

View workflow job for this annotation

GitHub Actions / build (22)

Expected property shorthand
subject: subject,

Check warning on line 106 in src/components/Pages/Contact.vue

View workflow job for this annotation

GitHub Actions / build (22)

Expected property shorthand
contactDetails: contactDetails,
message: message,
recaptcha: recaptcha
Expand Down
Loading