Skip to content

Commit 68ffb8c

Browse files
committed
fix button
1 parent 50ede57 commit 68ffb8c

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

src/app/PuzzleClient.tsx

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ function isPuzzleSolved(tiles: (number | null)[]) {
9898

9999
const ALL_FACTS = [
100100
// 1
101-
`Zak King <a href="mailto:[email protected]">[email protected]</a>`,
101+
`I'm Zak - this is my website <a href="mailto:[email protected]" style="font-size: 0.8em;">[email protected]</a>`,
102102
// 2
103-
`Reach out on <a href="https://www.linkedin.com/in/zakandrewking/" target="_blank">LinkedIn</a>`,
103+
`Find me on <a href="https://www.linkedin.com/in/zakandrewking/" target="_blank">LinkedIn</a>`,
104104
// 3
105-
`VP of Eng @ <a href="https://www.delfina.com" target="_blank">Delfina</a> (2022–present): maternal health, AI, EHR integration`,
105+
`VP Engineering @ <a href="https://www.delfina.com" target="_blank">Delfina</a> (2022–present): software for maternal health`,
106106
// 4
107-
`Associate Dir DevOps (2019–2022) @ <a href="https://www.amyris.com" target="_blank">Amyris</a>`,
107+
`Asc. Director DevOps (2019–2022) @ <a href="https://www.amyris.com" target="_blank">Amyris</a>`,
108108
// 5
109109
`Project Scientist, Principle Investigator (2017–2019) @ <a href="https://ucsd.edu" target="_blank">UC San Diego</a>`,
110110
// 6
@@ -118,7 +118,7 @@ const ALL_FACTS = [
118118
// 10
119119
`Scrum (CSPO 2017) & <a href="https://www.amanet.org/5-day-mba-certificate-program/" target="_blank">AMA 5-Day MBA (2021)</a>`,
120120
// 11
121-
`Experience building & leading teams: GCP, AWS, Postgres, Flutter, Python, Docker, Terraform, REST, GraphQL, Datadog, FastAPI....`,
121+
`I've built products with: GCP, AWS, Postgres, Flutter, Python, TypeScript, Docker, Terraform, REST, GraphQL, Datadog, React, Next.js, D3.js, ...`,
122122
// 12
123123
`Focus on user-centered products, team autonomy & growth: <a href="https://www.delfina.com/resource/finding-your-users-in-digital-health" target="_blank">Learn more</a>`,
124124
// 13
@@ -130,23 +130,21 @@ const ALL_FACTS = [
130130
`<a href="https://www.nsfgrfp.org/" target="_blank">NSF GRFP</a> & <a href="https://jacobsschool.ucsd.edu/idea/admitted-undergraduates/jacobs-scholars" target="_blank">Jacobs Fellowship</a> recipient`,
131131
// 17
132132
// 18
133-
`big fan of code: Dart, Python, Terraform, TS, OSS, +++ <a href="https://github.com/zakandrewking" target="_blank">My GitHub</a>`,
134-
// 19
135-
`Delfina App on iOS: <a href="https://apps.apple.com/us/app/delfina-pregnancy-tracker/id6478985864" target="_blank">Delfina iOS link</a> | Android: <a href="https://play.google.com/store/apps/details?id=com.delfina.gaia" target="_blank">Delfina Android link</a>`,
133+
`<a href="https://apps.apple.com/us/app/delfina-pregnancy-tracker/id6478985864" target="_blank">Delfina App on iOS</a> | <a href="https://play.google.com/store/apps/details?id=com.delfina.gaia" target="_blank">Delfina App on Android</a>`,
136134
// 20
137135
`Driving maternal health crisis solutions with AI: <a href="https://delfina.com" target="_blank">Learn about our mission</a>`,
138136
// 21
139137
`Strain engineering: <a href="https://www.biorxiv.org/content/10.1101/2023.01.03.521657v1" target="_blank">DARPA-funded project to develop microbial strains with an AI scientist</a>`,
140138
// 22
141139
`Favorite side project: <a href="https://brainshare.io" target="_blank">Brainshare</a> (code on <a href="https://github.com/zakandrewking/brainshare" target="_blank">GitHub</a>)`,
142140
// 23
143-
`Tons of leadership experience: I'm always thinking about how to recruit amazing engineers & give them the chance to do their best work`,
141+
`I'm a passionate tech leader — always thinking about how to recruit amazing engineers & empower them to do their best work`,
144142
// 24
145143
`Dissertation: <a href="https://escholarship.org/content/qt83d340c7/qt83d340c7.pdf" target="_blank">"Optimization of microbial cell factories..."</a>`,
146144
`Favorite AI: <a href="https://www.youtube.com/watch?v=syyXdBg9BIc" target="_blank">Ash in Alien</a>`,
147-
// 25
148145
`<a href="/resume.pdf" target="_blank">Resume PDF</a>`,
149-
`Last updated Feb 20, 2025`,
146+
`Source code for this site on <a href="https://github.com/zakandrewking/brainsbrainsbrains.com" target="_blank">GitHub</a>`,
147+
`Last updated February 21, 2025`,
150148
];
151149

152150
function getFactsForGridSize(gridSize: number) {
@@ -488,7 +486,7 @@ export default function PuzzleClient() {
488486
</p>
489487
<div className="flex gap-4 justify-center">
490488
<button
491-
className="px-4 py-2 bg-primary text-white rounded hover:opacity-90"
489+
className="px-4 py-2 border border-gray-300 rounded hover:bg-gray-100 dark:hover:bg-gray-700"
492490
onClick={() => {
493491
setEasyMode(true);
494492
setShowEasyModePrompt(false);

0 commit comments

Comments
 (0)