-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
56 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,41 @@ | ||
<template> | ||
<div class="container mt-6 mb-6"> | ||
<h1 class="title">Contacto</h1> | ||
<section class="content"> | ||
<PrognoPageTitle name="Contacto" /> | ||
<section class="dark:text-gray-200"> | ||
<p>Si así se desea, el usuario podrá contactar con los propietarios y administración de la plataforma mediante correo electrónico a través de la dirección <a href="mailto:[email protected]">[email protected]</a></p> | ||
|
||
<h2 class="subtitle">Redes Sociales</h2> | ||
<h2 class="subtitle my-2 dark:text-gray-200">Redes Sociales</h2> | ||
<p>Mantente en contacto con <b>PrognoSports</b> a través de sus redes sociales:</p> | ||
<ul> | ||
<li> | ||
<router-link to="/contact"> | ||
<i class="fas fa-envelope px-1"></i> Contacta con el equipo | ||
</router-link> | ||
</li> | ||
<li> | ||
<a href="https://twitter.com/PrognoSports"> | ||
<o-icon | ||
pack="fab" | ||
icon="twitter" | ||
size="is-small"> | ||
</o-icon> Twitter | ||
<i class="fab fa-twitter px-1"></i> Twitter | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://telegram.me/PrognoSportsInfo"> | ||
<o-icon | ||
pack="fab" | ||
icon="telegram" | ||
size="is-small"> | ||
</o-icon> Telegram | ||
<i class="fab fa-telegram px-1"></i> Telegram | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://twitch.tv/PrognoSports"> | ||
<o-icon | ||
pack="fab" | ||
icon="twitch" | ||
size="is-small"> | ||
</o-icon> Twitch | ||
<i class="fab fa-twitch px-1"></i> Twitch | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://instagram.com/PrognoSports" class="list-item"> | ||
<o-icon | ||
pack="fab" | ||
icon="instagram" | ||
size="is-small"> | ||
</o-icon> Instagram | ||
<a href="https://instagram.com/PrognoSports"> | ||
<i class="fab fa-instagram px-1"></i> Instagram | ||
</a> | ||
</li> | ||
</ul> | ||
</section> | ||
</div> | ||
</template> | ||
</template> | ||
<script setup lang="ts"> | ||
import PrognoPageTitle from "@/components/lib/PrognoPageTitle.vue"; | ||
</script> |