mirror of
https://github.com/tauri-apps/tauri.studio.git
synced 2026-02-04 10:31:16 +01:00
feat(sponsors): give em a star and link
This commit is contained in:
@@ -64,6 +64,10 @@ export default {
|
||||
}
|
||||
],
|
||||
patrons: [
|
||||
{
|
||||
name: 'Virtual Inspiration',
|
||||
link: 'https://'
|
||||
},
|
||||
{ name: 'anonymous' },
|
||||
{ name: 'Robin van Boven' },
|
||||
{ name: 'Jonathan Baginski' },
|
||||
|
||||
@@ -34,7 +34,12 @@
|
||||
<div class="row justify-center">
|
||||
<q-list>
|
||||
<q-item v-for="patron in partners.patrons"
|
||||
:key="patron.id"> {{ patron.name }} </q-item>
|
||||
:key="patron.id">
|
||||
<a v-if="patron.link" :href="patron.link" rel="noopener" target="_blank">
|
||||
<q-icon name="fas fa-star"></q-icon>
|
||||
{{ patron.name }} </a>
|
||||
<span v-else> {{ patron.name }} </span>
|
||||
</q-item>
|
||||
</q-list>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user