forked from sadanandpai/resume-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sadanand Pai
committed
Jan 7, 2023
1 parent
75eef49
commit a68a057
Showing
7 changed files
with
69 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"image": "https://randomuser.me/api/portraits/men/18.jpg", | ||
"email": "[email protected]", | ||
"phone": "+91 9876543210", | ||
"url": "www.github.com/sadanandpai/", | ||
"url": "www.e-resume.vercel.app", | ||
"summary": "I am a web developer having expertise in frontend development and exposure to back- end development. I design and develop web applications using the latest technologies to deliver the product with quality code.", | ||
"location": { | ||
"address": "", | ||
|
@@ -134,7 +134,7 @@ | |
"highlights": [ | ||
"* Worked on a team of 5 developers to develop a web application for a client" | ||
], | ||
"summary": "<ul><li>Design easy user interfaces and great user experiences for the digital platforms of small companies</li><li>Wordpress development, including themes creation or customization, custom plugins development and training</li><li>E-commerce maintenance with Fastcommerce, a Brazilian e-commerce platform</li><li>E-commerce development with Magento, customizing preexisting themes</li><li>Integrate external services such as payment services, delivery, etc into Magento solutions</li><li>VPS configuration and optimization (Apache & Nginx)</li></ul>", | ||
"summary": "<ul><li>Design easy user interfaces and great user experiences for the digital platforms of small companies</li><li>Wordpress development, including themes creation or customization, custom plugins development and training</li><li>E-commerce maintenance with Fastcommerce, a Brazilian e-commerce platform</li><li>E-commerce development with Magento, customizing preexisting themes</li><li>Integrate external services such as payment services, delivery, etc into Magento solutions</li></ul>", | ||
"years": "4 year" | ||
} | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { AiFillGithub } from 'react-icons/ai'; | ||
import { AiFillLinkedin } from 'react-icons/ai'; | ||
import { AiOutlineTwitter } from 'react-icons/ai'; | ||
import { FaHackerrank } from 'react-icons/fa'; | ||
import { SiCodechef } from 'react-icons/si'; | ||
import { SiHackerearth } from 'react-icons/si'; | ||
import { SiLeetcode } from 'react-icons/si'; | ||
|
||
export const socialIcons = new Map([ | ||
['linkedin', AiFillLinkedin], | ||
['github', AiFillGithub], | ||
['twitter', AiOutlineTwitter], | ||
['hackerrank', FaHackerrank], | ||
['hackerearth', SiHackerearth], | ||
['codechef', SiCodechef], | ||
['leetcode', SiLeetcode], | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
type IProfiles = { | ||
export type IProfiles = { | ||
network: string; | ||
username: string; | ||
url: string; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters