Skip to content

Commit 8700469

Browse files
committed
add socials
1 parent c32cdfb commit 8700469

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

src/data/fs.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export const fs: Node[] = [
2323
<h1>Hi, I am Soohoon Choi</h1>
2424
<br />
2525
<p>
26-
I&apos;m currently running <a href="https://greptile.com" className="text-green-500 underline">GREPTILE</a>, an AI code review company, as a cofounder.
27-
Before that I was a CS and math student at <a href="https://gatech.edu" className="text-amber-700 underline">Georgia Tech</a> .
26+
I&apos;m currently running <a href="https://greptile.com" target="_blank" className="text-green-500 underline">GREPTILE</a>, an AI code review company, as a cofounder.
27+
Before that I was a CS and math student at <a href="https://gatech.edu" target="_blank" className="text-amber-700 underline">Georgia Tech</a> .
2828
</p>
2929
<br />
3030
<p>
@@ -41,6 +41,13 @@ export const fs: Node[] = [
4141
<br />
4242
soohoonchoi [at] gmail [dot] com
4343
</p>
44+
<br />
45+
<p>Socials</p>
46+
<ul>
47+
<li>- <a href="https://x.com/soohoonchoi" target="_blank" className="text-blue-500 underline">Twitter/X</a></li>
48+
<li>- <a href="https://github.com/soohoonc" target="_blank" className="text-blue-500 underline">GitHub</a></li>
49+
<li>- <a href="https://linkedin.com/in/soohoonchoi" target="_blank" className="text-blue-500 underline">LinkedIn</a></li>
50+
</ul>
4451
</div>
4552
)
4653
},

src/providers/desktop.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ export const DesktopProvider = ({ children }: { children: React.ReactNode }) =>
217217
id: `window-${Date.now()}`,
218218
title: application.name,
219219
position: options?.position || { x: 50, y: 50 },
220-
size: options?.size || { width: 400, height: 300 },
220+
size: options?.size || { width: 640, height: 480 },
221221
zIndex: windows.length,
222222
application: application,
223223
content: < Component {...args} />
@@ -381,7 +381,7 @@ export const DesktopProvider = ({ children }: { children: React.ReactNode }) =>
381381
}, {
382382
path: '/home/soohoon/welcome'
383383
}, {
384-
...(isMobile ? { size: { width, height: 400 } } : {}),
384+
...(isMobile ? { size: { width, height: 480 } } : {}),
385385
...(isMobile ? { position: { x: 0, y: 40 } } : {})
386386
})
387387
}, [isMobile])

0 commit comments

Comments
 (0)