12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <template>
- <footer class="footer">
- <div class="flex justify-between items-center flex-1">
- <span class="flex font-mono" style="align-items: start">
- <a
- class="footer-link hidden md:inline-flex"
- href="https://www.netlify.com"
- target="_blank"
- rel="noopener"
- >
- Powered by Netlify
- </a>
- <span class="hidden md:inline-flex">
- <a
- class="footer-link"
- href="https://oss.capital/?ref=hoppscotch"
- target="_blank"
- rel="noopener"
- >
- OSS Capital
- </a>
- <a
- class="footer-link"
- href="https://paw.cloud/?utm_source=hoppscotch&utm_medium=website&utm_campaign=hoppscotch-sponsorship"
- target="_blank"
- rel="noopener"
- >
- Paw
- </a>
- <a
- class="footer-link"
- href="https://simplescraper.io/?utm_source=hs"
- target="_blank"
- rel="noopener"
- >
- Simplescraper
- </a>
- </span>
- <iframe
- src="https://ghbtns.com/github-btn.html?user=hoppscotch&type=sponsor"
- frameborder="0"
- scrolling="0"
- width="150"
- height="20"
- title="GitHub"
- class="footer-link"
- loading="lazy"
- ></iframe>
- </span>
- <span class="flex font-mono" style="align-items: start">
- <a href="mailto:support@hoppscotch.io" target="_blank" rel="noopener">
- <button v-tooltip="$t('contact_us')" class="icon button">
- <i class="material-icons">email</i>
- </button>
- </a>
- <v-popover>
- <button v-tooltip="$t('choose_language')" class="icon button">
- <i class="material-icons">translate</i>
- </button>
- <template slot="popover">
- <div v-for="locale in availableLocales" :key="locale.code">
- <nuxt-link :to="switchLocalePath(locale.code)">
- <button v-close-popover class="icon button">
- {{ locale.name }}
- </button>
- </nuxt-link>
- </div>
- </template>
- </v-popover>
- </span>
- </div>
- </footer>
- </template>
- <script>
- export default {
- computed: {
- availableLocales() {
- return this.$i18n.locales.filter(({ code }) => code !== this.$i18n.locale)
- },
- },
- }
- </script>
- <style scoped lang="scss">
- .footer-link {
- @apply flex-shrink-0;
- @apply my-2;
- @apply mx-4;
- @apply text-secondaryLight;
- @apply text-sm;
- &:hover {
- @apply text-secondary;
- }
- }
- </style>
|