Skip to content

Commit aa2e37e

Browse files
committed
Update about page
1 parent 57bc7f3 commit aa2e37e

3 files changed

Lines changed: 27 additions & 4 deletions

File tree

next-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
/// <reference types="next/navigation-types/compat/navigation" />
34

45
// NOTE: This file should not be edited
56
// see https://nextjs.org/docs/basic-features/typescript for more information.

pages/about.tsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { ArticleImage } from "@components/Image/ArticleImage";
22
import PageLayout from "@components/Layout";
3+
import { SmartLink } from "@components/SmartLink";
34
import CoverImage from "@images/cover-picture.png";
45
import { NextSeo } from "next-seo";
56

@@ -19,8 +20,18 @@ export default function About(props: Props) {
1920
placeholder="blur"
2021
/>
2122
<p>
22-
I am a fourth-year Software Engineering Student from Carleton
23-
University living in Ottawa.
23+
I am a recent Software Engineering Graduate from Carleton
24+
University living in Ottawa, Canada. I currently work at{" "}
25+
<SmartLink href="https://component.fi/">Component.fi</SmartLink>{" "}
26+
as a Software Engineer. Component is a DeFi startup that aims to
27+
create asset management solutions for fund managers in VCs and
28+
Headge Funds. I lead infrastructure and DevOps efforts at
29+
Component aside from developing fullstack features. Previously
30+
I&apos;ve worked with{" "}
31+
<SmartLink href="https://www.moveworks.com/">Moveworks</SmartLink>
32+
, <SmartLink href="https://www.kinaxis.com/">Kinaxis</SmartLink>{" "}
33+
and <SmartLink href="https://www.ciena.com/">Ciena</SmartLink> in
34+
their DevOps teams.
2435
</p>
2536
<p>
2637
On this site, I share things I am working on as well as my

tsconfig.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,19 @@
2727
"@scripts/*": ["scripts/*"],
2828
"@utils/*": ["utils/*"]
2929
},
30-
"incremental": true
30+
"incremental": true,
31+
"plugins": [
32+
{
33+
"name": "next"
34+
}
35+
]
3136
},
32-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "pages/_error.js"],
37+
"include": [
38+
"next-env.d.ts",
39+
"**/*.ts",
40+
"**/*.tsx",
41+
"pages/_error.js",
42+
".next/types/**/*.ts"
43+
],
3344
"exclude": ["node_modules", ".next"]
3445
}

0 commit comments

Comments
 (0)