mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Merge branch 'develop'
This commit is contained in:
commit
ddeca5d8fb
2 changed files with 33 additions and 14 deletions
|
|
@ -72,7 +72,13 @@ export const categories = {
|
||||||
label: 'Games',
|
label: 'Games',
|
||||||
pluralLabel: 'Games',
|
pluralLabel: 'Games',
|
||||||
slug: 'games',
|
slug: 'games',
|
||||||
icon: '🎮'
|
icon: '🎮',
|
||||||
|
requestLinks: [
|
||||||
|
{
|
||||||
|
href: 'https://forms.gle/29GWt85i1G1L7Ttj8',
|
||||||
|
label: 'Request a Game'
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
'homebrew': {
|
'homebrew': {
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
|
|
|
||||||
|
|
@ -18,20 +18,33 @@
|
||||||
@update:query="query = $event"
|
@update:query="query = $event"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div class="flex flex-col md:flex-row space-x-0 space-y-4 md:space-y-0 md:space-x-4">
|
|
||||||
<LinkButton
|
|
||||||
:href="`https://github.com/ThatGuySam/doesitarm/issues?q=is%3Aissue+${query}`"
|
|
||||||
class="text-xs"
|
|
||||||
>
|
|
||||||
Request an App with Github
|
|
||||||
</LinkButton>
|
|
||||||
|
|
||||||
<LinkButton
|
<div class="flex flex-col md:flex-row space-x-0 space-y-4 md:space-y-0 md:space-x-4">
|
||||||
:href="`https://twitter.com/DoesItARM/status/1330027384041508865`"
|
<template v-if="category.requestLinks">
|
||||||
class="text-xs"
|
<LinkButton
|
||||||
>
|
v-for="link in category.requestLinks"
|
||||||
Request an App with Twitter
|
:key="link.label"
|
||||||
</LinkButton>
|
:href="link.href"
|
||||||
|
class="text-xs"
|
||||||
|
>
|
||||||
|
{{ link.label }}
|
||||||
|
</LinkButton>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<LinkButton
|
||||||
|
:href="`https://github.com/ThatGuySam/doesitarm/issues?q=is%3Aissue+${query}`"
|
||||||
|
class="text-xs"
|
||||||
|
>
|
||||||
|
Request an App with Github
|
||||||
|
</LinkButton>
|
||||||
|
|
||||||
|
<LinkButton
|
||||||
|
:href="`https://twitter.com/DoesItARM/status/1330027384041508865`"
|
||||||
|
class="text-xs"
|
||||||
|
>
|
||||||
|
Request an App with Twitter
|
||||||
|
</LinkButton>
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue