Skip to content

Commit 57a2548

Browse files
Added note on free
1 parent c8d014a commit 57a2548

File tree

2 files changed

+31
-10
lines changed

2 files changed

+31
-10
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ firebase deploy
7676
firebase deploy --only hosting
7777
```
7878

79-
> 💡 Note: Functions isn't necessary; I started the project thinking I may need it, but you can ignore it and remove it. You won't be charged for it either way if you deploy it with functions.
79+
There is also a GitHub Action which manages automatic deployment of all assets.
8080

8181
## Using Functions Framework
8282

@@ -124,6 +124,3 @@ From the console, run:
124124
```
125125
gcloud storage buckets update gs://source.coderev.app --cors-file=cors.json
126126
```
127-
128-
129-

web/pages/index.vue

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,30 @@
5151
/>
5252
</video>
5353

54+
<section class="q-px-md">
55+
<h2
56+
class="q-my-none q-pt-xl q-pb-md"
57+
:class="[dark ? 'text-deep-purple-3' : 'text-accent']"
58+
>
59+
Is it "free" or is it <em>free</em>?
60+
</h2>
61+
62+
<p>
63+
<strong>Yes, completely free.</strong> There's no flow to capture a payment
64+
option, it's ad free, and you can always clone the repo and deploy your own if
65+
you want! No gotchas, no upsells, no trial period. Just absolutely free software
66+
because I strongly belive that this can help create a better interview process
67+
and payment should not be a reason not to use it!
68+
</p>
69+
70+
<p>It's been designed to minimize operating costs for as long as possible.</p>
71+
72+
<p>
73+
If your organization is using CodeRev.app and you'd like to support it, reach
74+
out and let me know if I can add your logo to help spread the word!
75+
</p>
76+
</section>
77+
5478
<section class="q-px-md q-mt-lg">
5579
<h2
5680
class="q-my-none q-pt-lg q-pb-md"
@@ -273,15 +297,15 @@
273297
size="lg"
274298
:color="dark ? 'grey-8' : undefined"
275299
@click="
276-
navigateTo('https://mastodon.social/@chrlschn', {
300+
navigateTo('https://bsky.app/profile/chrlschn.bsky.social', {
277301
external: true,
278302
open: { target: '_blank' },
279303
})
280304
"
281305
clickable
282306
>
283307
<QAvatar class="bg-accent" text-color="white" font-size="0.9em" size="lg">
284-
<QIcon :name="tabBrandMastodon" />
308+
<QIcon :name="tabButterfly" />
285309
</QAvatar>
286310
@chrlschn
287311
</QChip>
@@ -290,17 +314,17 @@
290314
size="lg"
291315
:color="dark ? 'grey-8' : undefined"
292316
@click="
293-
navigateTo('https://github.com/CharlieDigital/coderev', {
317+
navigateTo('https://mastodon.social/@chrlschn', {
294318
external: true,
295319
open: { target: '_blank' },
296320
})
297321
"
298322
clickable
299323
>
300324
<QAvatar class="bg-accent" text-color="white" font-size="0.9em" size="lg">
301-
<QIcon :name="tabBrandGithub" />
325+
<QIcon :name="tabBrandMastodon" />
302326
</QAvatar>
303-
coderev
327+
@chrlschn
304328
</QChip>
305329
</section>
306330
</QPage>
@@ -321,7 +345,7 @@ import {
321345
tabClock,
322346
tabExternalLink,
323347
} from "quasar-extras-svg-icons/tabler-icons";
324-
import { tabCircleFilled } from "quasar-extras-svg-icons/tabler-icons-v2";
348+
import { tabButterfly, tabCircleFilled } from "quasar-extras-svg-icons/tabler-icons-v2";
325349
import { btnProps } from "../utils/commonProps";
326350
327351
const description =

0 commit comments

Comments
 (0)