Skip to content

Commit 8f975ec

Browse files
committed
Commit to update website
1 parent 81e767c commit 8f975ec

File tree

6 files changed

+76
-144
lines changed

6 files changed

+76
-144
lines changed

apps/fluster/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@
100100
"react-responsive": "10.0.1",
101101
"react-router": "7.6.0",
102102
"react-spinners": "^0.17.0",
103+
"react-virtualized": "^9.22.6",
103104
"recharts": "2.15.3",
104105
"redux-persist": "^6.0.0",
105106
"rehype-autolink-headings": "7.1.0",
@@ -118,6 +119,7 @@
118119
"tauri-plugin-network-api": "^2.0.5",
119120
"tauri-plugin-python-api": "^0.3.4",
120121
"three": "^0.178.0",
122+
"ts-deepmerge": "^7.0.3",
121123
"typescript": "~5.8.3",
122124
"unified": "11.0.5",
123125
"uuid": "11.1.0",
@@ -141,6 +143,7 @@
141143
"@types/react": "^19.1.2",
142144
"@types/react-dom": "^19.1.2",
143145
"@types/react-resizable": "3.0.8",
146+
"@types/react-virtualized": "^9.22.2",
144147
"@types/redux-logger": "^3.0.13",
145148
"@vitejs/plugin-react": "^4.4.1",
146149
"@vitest/coverage-istanbul": "3.1.4",

apps/website/src/core/static_content.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const staticContent = {
1919
fund: {
2020
paypalDonate: "https://www.paypal.com/ncp/payment/D6S6NP4AHJD6Y",
2121
patreon: "https://www.patreon.com/uhlittlelessdum/about",
22-
github: "https://github.com/igloo1505/ulld",
22+
github: "https://github.com/flusterIO",
2323
},
2424
docs: {
2525
internal: {

apps/website/src/features/footer/data.tsx

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,16 @@ export const footerLinks: Record<FooterLinkKeys, LinkGroupItems> & {
4242
],
4343
funding: [
4444
{
45-
href: staticContent.links.sponsor,
45+
href: staticContent.links.fund.paypalDonate,
4646
label: "Paypal",
4747
},
4848
{
49-
href: staticContent.links.sponsor,
49+
href: staticContent.links.fund.patreon,
5050
label: "Patreon",
5151
},
52-
/* { */
53-
/* onClick: () => { */
54-
/* store.dispatch(showContactMeModal(true)); */
55-
/* }, */
56-
/* to: "", */
57-
/* noLink: true, */
58-
/* label: "Contact Me", */
59-
/* }, */
52+
{
53+
href: staticContent.links.fund.github,
54+
label: "Github",
55+
},
6056
],
6157
};

apps/website/src/features/landing_page/sections/story_of_ulld_section/index.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ export const StoryOfFlusterSection = () => {
5757
</p>
5858
</div>
5959
<PayPalLinkQr size={120} />
60+
61+
<p className="prose dark:prose-invert">
62+
If you are hiring, consider taking a look at my resume available{" "}
63+
<Link className="text-primary" href="/resume">
64+
here
65+
</Link>
66+
</p>
6067
</div>
6168
);
6269
};

apps/website/src/features/resume/resume_data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export type ResumeDataInput = z.input<typeof resumeDataSchema>;
5050

5151
const resumeData: ResumeDataInput = {
5252
intro:
53-
"I've worked with typescript, React and Node for almost a decade, and have experience with Python, Go and Rust as well. I am also proficient with Lua, and although I haven't used it in quite a while, I still enjoy working with Swift when I get the opportunity. I feel like I perform best when I’m challenged, and I would hope to find that in my next job as well. I studied Physics at the University of Wisconsin-Milwaukee, and in February of 2022 I decided to take time away from my freelance work to write a paper regarding relativity and gravity. The results of the paper that I've spent the past 3+ years working on has turned out to be more physically consistent than I had even hoped, producing at least 2 distinct, observable quantities that are unaccounted for by existing models of relativity. With this chapter now behind me, I'm looking forward to returning to full time work.",
53+
"I've worked with typescript, React and Node for more than a decade, and have experience with Python, Go and Rust as well. I feel like I perform best when I’m challenged, and I hope to find that in my next job. I majored in Physics at the University of Wisconsin-Milwaukee, and in February of 2022 I decided to take time away from my freelance work to write a paper regarding relativity and gravity. The results of the paper that I've spent the past 3+ years working on has turned out to be more physically consistent than I had even hoped, producing at least 2 distinct, observable quantities that are unaccounted for by existing models of relativity. With this chapter now behind me, I'm looking forward to returning to full time work.",
5454
skills: {
5555
"Frameworks, APIs and Libraries": {
5656
React: 10,

0 commit comments

Comments
 (0)