Skip to content

Commit

Permalink
custom dev port, added help for search an action
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuraghavb committed May 9, 2022
1 parent 68c53e3 commit 8990b41
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/Help.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template>
<div id="donate" class="mt-16">
<div id="help" class="mt-16">
<h2 class="font-extrabold text-2xl">
Having issues, suggestions and feedback?
</h2>
<div class="stepC mt-6">
<div class="donateBtn flex items-center mt-6">
<div class="flex items-center mt-6">
<a
href="https://t.me/enbizcard"
target="_blank"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"dev": "HOST=0.0.0.0 PORT=2221 nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate"
Expand Down
36 changes: 36 additions & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,24 @@
filteredAction('filteredPrimaryActions', 'primaryActions')
"
/>
<p class="p-3" v-if="filteredPrimaryActions.length < 1">
Can't find an action? Please
<a
href="#help"
class="
cursor-pointer
underline
font-extrabold
text-emerald-600
hover:text-emerald-500
focus:text-emerald-500
transition-colors
duration-200
"
>leave your suggestion</a
>
on Telegram
</p>
<div class="stepC actions">
<button
v-for="(action, index) in filteredPrimaryActions"
Expand Down Expand Up @@ -560,6 +578,24 @@
filteredAction('filteredSecondaryActions', 'secondaryActions')
"
/>
<p class="p-3" v-if="filteredSecondaryActions.length < 1">
Can't find an action? Please
<a
href="#help"
class="
cursor-pointer
underline
font-extrabold
text-emerald-600
hover:text-emerald-500
focus:text-emerald-500
transition-colors
duration-200
"
>leave your suggestion</a
>
on Telegram
</p>
<div class="stepC actions">
<button
v-for="(action, index) in filteredSecondaryActions"
Expand Down

0 comments on commit 8990b41

Please sign in to comment.