Skip to content

Commit 5e593df

Browse files
committed
Update icons for relay unigroup
1 parent 008e8ad commit 5e593df

5 files changed

Lines changed: 52 additions & 5 deletions

File tree

.svelte-kit/generated/server/internal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const options = {
2424
app: ({ head, body, assets, nonce, env }) => "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n\t\t" + head + "\n\t</head>\n\t<body data-sveltekit-preload-data=\"hover\">\n\t\t<div style=\"display: contents\">" + body + "</div>\n\t</body>\n</html>\n",
2525
error: ({ status, message }) => "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<title>" + message + "</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\t--bg: white;\n\t\t\t\t--fg: #222;\n\t\t\t\t--divider: #ccc;\n\t\t\t\tbackground: var(--bg);\n\t\t\t\tcolor: var(--fg);\n\t\t\t\tfont-family:\n\t\t\t\t\tsystem-ui,\n\t\t\t\t\t-apple-system,\n\t\t\t\t\tBlinkMacSystemFont,\n\t\t\t\t\t'Segoe UI',\n\t\t\t\t\tRoboto,\n\t\t\t\t\tOxygen,\n\t\t\t\t\tUbuntu,\n\t\t\t\t\tCantarell,\n\t\t\t\t\t'Open Sans',\n\t\t\t\t\t'Helvetica Neue',\n\t\t\t\t\tsans-serif;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 100vh;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t.error {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tmax-width: 32rem;\n\t\t\t\tmargin: 0 1rem;\n\t\t\t}\n\n\t\t\t.status {\n\t\t\t\tfont-weight: 200;\n\t\t\t\tfont-size: 3rem;\n\t\t\t\tline-height: 1;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -0.05rem;\n\t\t\t}\n\n\t\t\t.message {\n\t\t\t\tborder-left: 1px solid var(--divider);\n\t\t\t\tpadding: 0 0 0 1rem;\n\t\t\t\tmargin: 0 0 0 1rem;\n\t\t\t\tmin-height: 2.5rem;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\n\t\t\t.message h1 {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 1em;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t@media (prefers-color-scheme: dark) {\n\t\t\t\tbody {\n\t\t\t\t\t--bg: #222;\n\t\t\t\t\t--fg: #ddd;\n\t\t\t\t\t--divider: #666;\n\t\t\t\t}\n\t\t\t}\n\t\t</style>\n\t</head>\n\t<body>\n\t\t<div class=\"error\">\n\t\t\t<span class=\"status\">" + status + "</span>\n\t\t\t<div class=\"message\">\n\t\t\t\t<h1>" + message + "</h1>\n\t\t\t</div>\n\t\t</div>\n\t</body>\n</html>\n"
2626
},
27-
version_hash: "1kscbv9"
27+
version_hash: "1hbviuq"
2828
};
2929

3030
export async function get_hooks() {
Lines changed: 19 additions & 0 deletions
Loading
888 Bytes
Loading
Lines changed: 1 addition & 0 deletions
Loading

src/routes/resume/+page.svelte

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
import { base } from '$app/paths';
33
import skycubedLogo from '$lib/assets/experience-logos/skycubed.jpeg?url';
44
import tritonLogo from '$lib/assets/experience-logos/triton.jpeg?url';
5-
import relayLogo from '$lib/assets/experience-logos/relay.jpeg?url';
6-
import unigroupLogo from '$lib/assets/experience-logos/unigroup.jpeg?url';
7-
import northgateLogo from '$lib/assets/experience-logos/northgate.jpeg?url';
5+
import relayLogo from '$lib/assets/experience-logos/relay.png?url';
6+
import unigroupLogo from '$lib/assets/experience-logos/unigroup.svg?url';
7+
import northgateLogo from '$lib/assets/experience-logos/northgatefunds.svg?url';
88
import burnstackLogo from '$lib/assets/project-logos/burnstack.svg?url';
99
import quantvisionLogo from '$lib/assets/project-logos/quantvision.svg?url';
1010
1111
interface ExperienceEntry {
1212
role: string;
1313
company: string;
14+
companyLink?: string;
1415
location: string;
1516
dates: string;
1617
logo?: string;
@@ -32,13 +33,15 @@
3233
{
3334
role: 'Software Engineering Advisor',
3435
company: 'Northgate Funds',
36+
companyLink: 'https://northgatefunds.com/',
3537
location: 'California, United States · Remote',
3638
dates: 'Oct 2025 - Present',
3739
logo: northgateLogo
3840
},
3941
{
4042
role: 'Software Engineer',
4143
company: 'Skycubed',
44+
companyLink: 'https://www.skycubed.com/',
4245
location: 'San Diego, California',
4346
dates: 'February 2024 - Present',
4447
logo: skycubedLogo,
@@ -59,6 +62,7 @@
5962
{
6063
role: 'Data Science Intern',
6164
company: 'Relay Health',
65+
companyLink: 'https://www.joinrelay.app/',
6266
location: 'Remote',
6367
dates: 'January 2023 - June 2023',
6468
logo: relayLogo,
@@ -68,6 +72,7 @@
6872
{
6973
role: 'Data Science Intern',
7074
company: 'UniGroup CA',
75+
companyLink: 'https://www.unigroup.com/',
7176
location: 'Remote',
7277
dates: 'June 2021 - August 2021',
7378
logo: unigroupLogo,
@@ -179,7 +184,20 @@
179184
<div>
180185
<h3 class="text-2xl font-bold" style="color: var(--color-text-on-box)">{role.role}</h3>
181186
<p class="text-lg" style="color: var(--color-text-on-box); opacity: 0.9">
182-
{role.company}{#if role.employmentType} • {role.employmentType}{/if} • {role.location}
187+
{#if role.companyLink}
188+
<a
189+
href={role.companyLink}
190+
target="_blank"
191+
rel="noopener noreferrer"
192+
class="company-link"
193+
style="color: var(--color-text-on-box)"
194+
>
195+
{role.company}
196+
</a>
197+
{:else}
198+
{role.company}
199+
{/if}
200+
{#if role.employmentType} • {role.employmentType}{/if} • {role.location}
183201
</p>
184202
</div>
185203
</div>
@@ -312,4 +330,13 @@
312330
height: 100%;
313331
object-fit: contain;
314332
}
333+
334+
.company-link {
335+
text-decoration: underline;
336+
text-underline-offset: 0.15em;
337+
}
338+
339+
.company-link:hover {
340+
opacity: 0.85;
341+
}
315342
</style>

0 commit comments

Comments
 (0)