Skip to content

Commit 00af137

Browse files
feat: github org link
1 parent 27af21c commit 00af137

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

bun.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"lockfileVersion": 1,
3+
"configVersion": 0,
34
"workspaces": {
45
"": {
56
"name": "vmm-web",
@@ -12,7 +13,7 @@
1213
"@tanstack/react-start": "^1.132.0",
1314
"@tanstack/router-plugin": "^1.132.0",
1415
"animejs": "^4.2.2",
15-
"lucide-react": "^0.544.0",
16+
"lucide-react": "^0.554.0",
1617
"nitro": "latest",
1718
"react": "^19.2.0",
1819
"react-dom": "^19.2.0",
@@ -680,7 +681,7 @@
680681

681682
"lru-cache": ["lru-cache@11.2.2", "", {}, "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg=="],
682683

683-
"lucide-react": ["lucide-react@0.544.0", "", { "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-t5tS44bqd825zAW45UQxpG2CvcC4urOwn2TrwSH8u+MjeE+1NnWl6QqeQ/6NdjMqdOygyiT9p3Ev0p1NJykxjw=="],
684+
"lucide-react": ["lucide-react@0.554.0", "", { "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-St+z29uthEJVx0Is7ellNkgTEhaeSoA42I7JjOCBCrc5X6LYMGSv0P/2uS5HDLTExP5tpiqRD2PyUEOS6s9UXA=="],
684685

685686
"lz-string": ["lz-string@1.5.0", "", { "bin": { "lz-string": "bin/bin.js" } }, "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ=="],
686687

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@tanstack/react-start": "^1.132.0",
2121
"@tanstack/router-plugin": "^1.132.0",
2222
"animejs": "^4.2.2",
23-
"lucide-react": "^0.544.0",
23+
"lucide-react": "^0.554.0",
2424
"nitro": "latest",
2525
"react": "^19.2.0",
2626
"react-dom": "^19.2.0",

src/routes/index.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { createFileRoute } from "@tanstack/react-router";
22
import { animate, createTimeline, random, stagger } from "animejs";
3+
import { GithubIcon } from "lucide-react";
34
import { useEffect, useRef } from "react";
45

56
export const Route = createFileRoute("/")({ component: App });
@@ -129,7 +130,16 @@ function App() {
129130
</div>
130131
<div className="subtext">
131132
<span className="subtext-pill">Launching soon</span>
132-
<span className="subtext-pill accent">Stay Tuned</span>
133+
<a
134+
type="button"
135+
href="https://github.com/void-modding"
136+
target="_blank"
137+
className="subtext-pill accent"
138+
rel="noopener"
139+
>
140+
<GithubIcon />
141+
Stay Tuned
142+
</a>
133143
</div>
134144
</div>
135145
);

src/styles.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,8 @@ body {
145145
}
146146

147147
.subtext-pill {
148+
display: flex;
149+
gap: .6em;
148150
padding: 0.6em 1.1em;
149151
border: 1px solid rgba(255,255,255,0.2);
150152
border-radius: 999px;

0 commit comments

Comments
 (0)