Skip to content

Commit

Permalink
update resume, experience, achievement and projects
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-shetty committed Feb 16, 2024
1 parent 79661ae commit 0b602f5
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 6 deletions.
1 change: 0 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "export",
}

module.exports = nextConfig
Binary file modified public/Resume.pdf
Binary file not shown.
Binary file modified public/projects/finvest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions src/lib/achievements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ type Position =
| "Participant"
| "Project Pitching"
| "Idea Pitching"
| "Track Winners"

type Achievement = {
id: string
Expand All @@ -20,6 +21,26 @@ type Achievement = {
}

export const achievements: Achievement[] = [
{
id: uuid(),
competition: "Devhacks 5.0",
position: "Track Winners",
description:
"Developed a collaborative savings platform using blockchain to decentralize transactions.",
date: "February 2024",
teamMembers: ["Akkil MG", "Srajan Kumar", "Srujan Rai", "Zeliq Zayyan"],
organizer: "IIT Dharwad",
},
{
id: uuid(),
competition: "Echelon 2024",
position: "2nd Place",
description:
"Pitched the idea for ResQ phone for children and oldage people, competed against MBA students.",
date: "January 2024",
teamMembers: ["Chinmaya Vittal V", "Tejas GK"],
organizer: "Shreedevi Institute of Technology",
},
{
id: uuid(),
competition: "Roolathon 2023",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/experiences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const experiences = [
logo: "/experiences/niveus.jpeg",
},
startDate: "Nov 2023",
endDate: null,
endDate: "Feb 2024",
},
{
id: uuid(),
Expand Down
8 changes: 4 additions & 4 deletions src/lib/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ export const projects = [
id: uuid(),
name: "Finvest",
description:
"Web application for providing financial education to underserved poeple, built for Roolathon 2023",
"Web application for providing financial education, and mutual savings using Pots",
image: "/projects/finvest.png",
labels: ["Next.js", "TypeScript", "TailwindCSS"],
date: "October 2023",
sourceCode: "https://github.com/so-sc/Finvest-Roolathon",
liveUrl: "https://finvest-rudra.vercel.app/",
date: "February 2024",
sourceCode: "https://github.com/dev-shetty/rudra-parsec",
liveUrl: null,
},
{
id: uuid(),
Expand Down

0 comments on commit 0b602f5

Please sign in to comment.