Skip to content

Commit

Permalink
[Added]:language section
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhaw1904 committed Apr 12, 2024
1 parent 82fd007 commit a91ab5f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,14 @@ export default function Page() {
})}
</div>
</Section>
<Section>
<h2 className="text-xl font-bold">Langauges</h2>
<div className="flex flex-wrap gap-1">
{RESUME_DATA.languages.map((language) => {
return <Badge key={language}>{language}</Badge>;
})}
</div>
</Section>

<Section className="print-force-new-page scroll-mb-16">
<h2 className="text-xl font-bold">Projects</h2>
Expand Down
5 changes: 5 additions & 0 deletions src/data/resume-data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ export const RESUME_DATA = {
"Relay",
"WebRTC",
],
languages:[
"English",
"spanish",
"French"
],
projects: [
{
title: "Consultly",
Expand Down

0 comments on commit a91ab5f

Please sign in to comment.