Skip to content

Commit

Permalink
Add contents in about page
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallku committed May 7, 2024
1 parent b2dc165 commit a305d79
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 23 deletions.
23 changes: 13 additions & 10 deletions apps/blog/app/about/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

&__container {
padding: 0 12px;

&--about {
margin-bottom: 32px;

a {
color: color(link);
}
}
}

&__profile {
Expand All @@ -23,25 +31,20 @@

&__contact {
display: flex;
flex-direction: column;
margin-bottom: 32px;
gap: 8px;

@include respond-to(medium) {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
align-items: center;
justify-content: center;

> li > a {
display: flex;
padding: 8px;
align-items: center;
border: 1px solid color(sub);
border-radius: 8px;
border-radius: 50%;

> i {
margin-right: 8px;
font-size: 2em;
font-size: 1.2em;
}
}
}
Expand Down
55 changes: 42 additions & 13 deletions apps/blog/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Icon } from "@marshallku/icon";
import { classNames } from "@marshallku/utils";
import Typography from "#components/Typography";
import styles from "./page.module.scss";
import Button from "#components/Button";

export const dynamic = "error";

Expand All @@ -28,7 +27,7 @@ export default function AboutPage() {
<li>
<a href="https://github.com/marshallku" target="_blank" rel="noopener noreferrer nofollow">
<Icon name="github" />
<Typography>GitHub</Typography>
<Typography className="sr-only">GitHub</Typography>
</a>
</li>
<li>
Expand All @@ -38,26 +37,56 @@ export default function AboutPage() {
rel="noopener noreferrer nofollow"
>
<Icon name="linkedin" />
<Typography>LinkedIn</Typography>
<Typography className="sr-only">LinkedIn</Typography>
</a>
</li>
<li>
<a href="mailto:[email protected]">
<Icon name="mail" />
<Typography>[email protected]</Typography>
<Typography className="sr-only">[email protected]</Typography>
</a>
</li>
</ul>
</section>
<section className={cx("__container", "__container--about")}>
<Typography component="p" marginBottom>
Hello! I'm Marshall Ku, a passionate developer who loves learning and taking on new challenges. I've
worked on various projects and have experience with a wide range of technologies.
</Typography>
<Typography component="p" marginBottom>
I enjoy solving complex problems with code and continuously strive to improve my skills. Through
side projects and professional experience, I've gained a solid foundation in multiple domains, from
frontend to backend technologies.
</Typography>
<Typography component="p" marginBottom={8} variant="h5" fontWeight={700}>
What I Do
</Typography>
<Typography component="ul" marginBottom>
<li>
<a
href="https://marshallku.notion.site/a8461811a3044446a2048fc054001b9d?pvs=4"
target="_blank"
rel="noopener noreferrer nofollow"
>
<Icon name="notion" />
<Typography>Resume</Typography>
</a>
<Typography component="strong" fontWeight={700}>
Frontend Development:
</Typography>{" "}
I specialize in building interactive user interfaces using technologies like React and
TypeScript.
</li>
</ul>
<li>
<Typography component="strong" fontWeight={700}>
Backend Development:
</Typography>{" "}
I've worked with NestJS, MongoDB, and more to create robust server-side applications.
</li>
<li>
<Typography component="strong" fontWeight={700}>
Automation Enthusiast:
</Typography>{" "}
I love automating tasks and creating efficient workflows using tools like Github Actions and
Shell Scripts.
</li>
</Typography>
<Typography component="p">
For more details about my experience and projects, please visit my{" "}
<a href="https://resume.marshallku.com/">resume page</a>.
</Typography>
</section>
</div>
);
Expand Down

0 comments on commit a305d79

Please sign in to comment.