Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"@trainto/sante": "^0.2.2",
"axios": "^1.8.4",
"axios": "^1.12.0",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"micromark": "^4.0.1",
Expand Down
27 changes: 14 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/capstec.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/datasoda.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/flo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/querka.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/rb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/tworld.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions src/app/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,48 @@
import Image from 'next/image';

import Card from '@/components/common/portfolio-card';
import Contributions from '@/components/contributions';
import './terminal.css';

const Portfolios = [
{
title: 'Insight Lens',
desc: 'Text to Hadoop query using LLM for in-house data engineers',
img: '/querka.png',
tags: ['Node', 'Express', 'Typescript', 'React', 'Tailwind', 'MySQL', 'Redis', 'Turborepo'],
},
{
title: 'RB Dialog',
desc: 'Total AI chatbot solution',
img: '/rb.png',
tags: ['Typescript', 'Next.js', 'React', 'AWS'],
},
{
title: 'IOT sensor solution',
desc: 'IoT based remote facility monitoring solution',
img: '/capstec.png',
tags: ['Next.js', 'React', 'Typescript'],
},
{
title: 'T World',
desc: "SKT's official mobile/web app",
img: '/tworld.jpg',
tags: ['Node', 'Express', 'Typescript', 'JQuery', 'Handlebar', 'Redis'],
},
{
title: 'FLO (a.k.a. MusicMate)',
desc: 'Music streaming app',
img: '/flo.jpg',
tags: ['Java', 'Kotlin', 'Android', 'Retrofit', 'ExoPlayer', 'MVVM'],
},
{
title: 'DataSoda',
desc: 'LTE data sharing app',
img: '/datasoda.jpg',
tags: ['Java', 'Android', 'Retrofit', 'MVP'],
},
];

export default function About() {
return (
<div className="w-11/12 mx-auto">
Expand Down Expand Up @@ -39,6 +79,15 @@ export default function About() {
</div>
</div>

<div className="mt-10">
<h3 className="font-bold text-3xl">Portfolio</h3>
<div className="flex flex-wrap justify-center gap-4 pt-4">
{Portfolios.map((p) => (
<Card key={p.title} title={p.title} desc={p.desc} img={p.img} tags={p.tags} />
))}
</div>
</div>

<div className="mt-10">
<h3 className="font-bold text-3xl">Work Experience</h3>
<div className="flex flex-col sm:flex-row space-x-5 space-y-2 mt-5">
Expand Down
51 changes: 51 additions & 0 deletions src/components/common/portfolio-card.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import Image from 'next/image';

const Card = ({
title,
desc,
img,
tags,
}: {
title: string;
desc: string;
img: string;
tags: string[];
}) => {
return (
<div
className={
'portfolio_card w-[230px] h-[300px] bg-black rounded-lg shadow-lg hover:shadow-2xl' +
' transform hover:scale-105 hover:-translate-x-1 hover:-translate-y-1 transition-transform duration-200'
}
>
<div className="relative w-full h-[100px]">
<Image
src={img}
layout="fill"
objectFit="cover"
alt="Project image"
className="rounded-t-lg"
/>
</div>

<div className="p-2">
<h4 className="text-brand1 text-lg font-bold">{title}</h4>
</div>

<div className="px-2 text-sm text-gray-400 min-h-[50px]">{desc}</div>

<div className="flex flex-wrap justify-center space-x-2 p-1">
{tags.map((tag) => (
<span
key={tag}
className="border border-brand2/50 rounded-xl px-2 py-1 mt-1 text-xs text-brand2"
>
{tag}
</span>
))}
</div>
</div>
);
};

export default Card;