Skip to content

Commit 7f40bd6

Browse files
committed
chore: slight cleanup
1 parent 029059e commit 7f40bd6

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

.github/workflows/site_build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# idk why im bothering with this, not like im going to use cloudflare for it
2-
31
name: Site Build
42

53
on:

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@
2121
},
2222
"scripts": {
2323
"dev": "bun --watch . --dev",
24-
"test:site": "bun --watch src/web/web.ts",
2524
"test:jetstream": "bun --watch src/utils/bluesky/jetstream.ts",
2625
"lint": "eslint . --ext .ts -c .eslintrc.json",
2726
"lint:fix": "eslint . --ext .ts -c .eslintrc.json --fix",
2827
"cargo:api:dev": "cd api && cargo watch -x \"run -- --dev\"",
29-
"web:dev": "cd web && bun dev",
28+
"web:dev": "concurrently --names \"WEB,API\" --prefix-colors \"blue,green\" \"cd web && bun dev\" \"cd api && cargo watch -x \\\"run -- --dev\\\"\"",
3029
"web:build": "cd web && bun build"
3130
},
3231
"dependencies": {

web/src/components/TrustedBy.tsx

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const TrustedBy = () => {
1414
transition={{ duration: 0.5, delay: 0.2 }}
1515
onViewportEnter={() => {
1616
setTimeout(() => {
17-
setOdometerValue(180);
17+
setOdometerValue(213);
1818
}, 500);
1919
}}
2020
>
@@ -51,6 +51,21 @@ export const TrustedBy = () => {
5151
</div>
5252
</div>
5353
</div>
54+
<motion.div
55+
initial={{ opacity: 0, y: 10 }}
56+
animate={{ opacity: 1, y: 0 }}
57+
transition={{ duration: 0.5, delay: 0.15 }}
58+
>
59+
<div className="flex flex-col gap-2 sm:flex-row mt-4">
60+
<a
61+
href="/stats"
62+
className="w-64 sm:w-52 h-12 rounded-xl font-bold text-primaryText border border-solid flex justify-center items-center cursor-pointer bg-bgDark2 hover:bg-bgDark3 border-primaryColor transition"
63+
aria-label="Join Support Server"
64+
>
65+
View more stats ➡️
66+
</a>
67+
</div>
68+
</motion.div>
5469
</div>
5570
</motion.div>
5671
</section>

0 commit comments

Comments
 (0)