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

fix: fix cursor of some footer links and replace twitter with mastodon #2181

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,4 @@ jobs:
run: yarn test:api
env:
TEST_URL: ${{ matrix.url }}

9 changes: 4 additions & 5 deletions components/LandingPageDownload.client.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
>
<a
class="text-2xl"
:href="downloadUrl"
href="https://www.fosshub.com/JabRef.html"
>Download JabRef</a
>
</n-button>
Expand All @@ -30,7 +30,7 @@
Also available for
<t-nuxtlink
class="text-primary-500"
href="download"
href="https://www.fosshub.com/JabRef.html"
>mac OS X and Linux</t-nuxtlink
>
<br />
Expand All @@ -41,7 +41,7 @@
Also available for
<t-nuxtlink
class="text-primary-500"
href="download"
href="https://www.fosshub.com/JabRef.html"
>Windows and Linux</t-nuxtlink
>
<br />
Expand All @@ -52,7 +52,7 @@
Also available for
<t-nuxtlink
class="text-primary-500"
href="download"
href="https://www.fosshub.com/JabRef.html"
>
mac OS X and Windows
</t-nuxtlink>
Expand All @@ -78,5 +78,4 @@
<script setup lang="ts">
import { isLinux, isMac, isWindows } from '~/composables/detectOs'

const downloadUrl = constructDownloadUrl()
</script>
6 changes: 4 additions & 2 deletions components/LandingPageFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
<li class="py-1">
<t-nuxtlink
class="no-underline text-sm text-gray-800 hover:text-primary-800"
href=""
@click="showLegalNotices = true"
>
Legal Notices
Expand All @@ -77,6 +78,7 @@
<li class="py-1">
<t-nuxtlink
class="no-underline text-sm text-gray-800 hover:text-primary-800"
href=""
@click="showPrivacyPolicy = true"
>
Privacy Policy
Expand Down Expand Up @@ -147,9 +149,9 @@
<li class="py-1">
<t-nuxtlink
class="no-underline text-sm text-gray-800 hover:text-primary-800"
href="https://twitter.com/JabRef_org"
rel="me" href="https://foojay.social/@jabref">
>
Twitter
Mastodon
</t-nuxtlink>
</li>
<li class="py-1">
Expand Down
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<ClientOnly>
<a
class="text-2xl"
:href="constructDownloadUrl()"
href="https://www.fosshub.com/JabRef.html"
>Download JabRef</a
>
</ClientOnly>
Expand Down