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

Cleanup contact page #465

Merged
merged 1 commit into from
Jul 4, 2023
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
82 changes: 40 additions & 42 deletions frontend/pages/Contact.vue
Original file line number Diff line number Diff line change
@@ -1,53 +1,57 @@
<template>
<div class="contact-page">
<p class="d-flex justify-center font-weight-medium">Help Center</p>
<p class="d-flex justify-center font-weight-medium">Contact Us</p>
<p class="d-flex justify-center font-weight-medium">You can choose from a range of contact types. All you have to do is to find the one that suits you the best and we are ready to answer any of your questions as soon as possible.</p>
<div class="ma-16">
<h1 class="d-flex justify-center">Contact us</h1>
<div class="d-flex justify-center mt-5 text-center">
<p style="max-width: 700px;">
You can choose from a range of contact types. <br>
All you have to do is to find the one that suits you the best
and we are ready to answer any of your questions as soon as possible.
</p>
</div>
<v-container>
<v-row>
<v-col>
<v-card>
<v-card-title>Skype</v-card-title>
<v-card-text>
<a href="https://facebook.com/kingboosting">KingBoosting</a>
<v-icon x-large>mdi-skype</v-icon>
</v-card-text>
</v-card>
<a href="https://facebook.com/kingboosting">
<v-card>
<v-card-title>Facebook</v-card-title>
<v-card-text>
KingBoosting
<v-icon x-large>mdi-facebook</v-icon>
</v-card-text>
</v-card>
</a>
</v-col>
<v-col>
<v-card>
<v-card-title>Facebook</v-card-title>
<v-card-text>
<a href="https://facebook.com/kingboosting">KingBoosting</a>
<v-icon x-large>mdi-facebook</v-icon>
</v-card-text>
</v-card>
<a href="https://twitter.com/kingboosting">
<v-card>
<v-card-title>Twitter</v-card-title>
<v-card-text>
KingBoosting
<v-icon x-large>mdi-twitter</v-icon>
</v-card-text>
</v-card>
</a>
</v-col>
<v-col>
<v-card>
<v-card-title>Twitter</v-card-title>
<v-card-text>
<a href="https://twitter.com/kingboosting">KingBoosting</a>
<v-icon x-large>mdi-twitter</v-icon>
</v-card-text>
</v-card>
<a href="https://www.instagram.com/kingboosting_official/">
<v-card>
<v-card-title>Instagram</v-card-title>
<v-card-text>
KingBoosting
<v-icon x-large>mdi-instagram</v-icon>
</v-card-text>
</v-card>
</a>
</v-col>
</v-row>
<v-row>
<v-card width="100%">
<v-card-title>Instagram</v-card-title>
<v-card-text>
<a href="https://www.instagram.com/kingboosting_official/">KingBoosting</a>
<v-icon x-large>mdi-instagram</v-icon>
</v-card-text>
</v-card>
</v-row>
<v-row>
<v-col>
<v-form ref="form" v-model="valid">
<v-select v-model="category" name="Category" label="Category" :rules="[(v) => !!v || 'Category is required']" :items="categories"></v-select>
<v-select v-model="category" name="Category" label="Category"
:rules="[(v) => !!v || 'Category is required']" :items="categories"></v-select>
<v-text-field name="name" label="Name" :rules="nameRules"></v-text-field>
<v-text-field name="email" label="E-mail address" :rules="[(v) => /.+@.+\..+/.test(v) || 'E-mail must be valid']"></v-text-field>
<v-text-field name="email" label="E-mail address"
:rules="[(v) => /.+@.+\..+/.test(v) || 'E-mail must be valid']"></v-text-field>
<v-textarea outlined name="message" placeholder="Your Message"></v-textarea>
<v-btn :disabled="!valid" color="primary" class="mr-4" @click="submit">Send Message</v-btn>
</v-form>
Expand Down Expand Up @@ -111,9 +115,3 @@ export default {
},
};
</script>

<style scoped>
.contact-page {
padding: 20px;
}
</style>
Loading