Add descriptions of skills and links file
This commit is contained in:
parent
06a4f18912
commit
0540a2891e
3 changed files with 36 additions and 0 deletions
BIN
public/cv.pdf
BIN
public/cv.pdf
Binary file not shown.
|
|
@ -1,5 +1,23 @@
|
|||
import createLinkFactory from '@/data/_internals/create-link-factory';
|
||||
|
||||
/*
|
||||
|
||||
Use this file to define all websites you use as the "links" property.
|
||||
This way, you can ensure one website has the same name and icon, among all resume sections.
|
||||
|
||||
Where links are used:
|
||||
- education-section.data.ts
|
||||
- experience-section.data.ts
|
||||
- main-section.data.ts
|
||||
- portfolio-section.data.ts
|
||||
- skills-section.data.ts
|
||||
- testimonials-section.data.ts
|
||||
|
||||
Usage examples:
|
||||
link({ url: '...' }) — returns base link object with provided url.
|
||||
link({ name: '...', url: '...' }) — returns link object with a custom name.
|
||||
*/
|
||||
|
||||
// GENERAL
|
||||
|
||||
export const facebook = createLinkFactory({
|
||||
|
|
|
|||
|
|
@ -1,5 +1,23 @@
|
|||
import createSkillFactory from '@/data/_internals/create-skill-factory';
|
||||
|
||||
/*
|
||||
|
||||
Place where you can define all your skills.
|
||||
This way, you can ensure one skill has the same name, icon, and URL among all resume sections.
|
||||
|
||||
Where skills are used:
|
||||
- experience-section.data.ts
|
||||
- portfolio-section.data.ts
|
||||
- skills-section.data.ts
|
||||
|
||||
Usage examples:
|
||||
skill() — returns skill object without any customizations.
|
||||
skill({ level: 3 }) — returns a levelled-skill. It can be used only in skills-section.data.ts.
|
||||
skill({ name: '...' }) — returns skill object with a custom name.
|
||||
skill({ description: '...' }) — returns skill with a description displayed when user hovers over it.
|
||||
|
||||
*/
|
||||
|
||||
export const apolloGraphql = createSkillFactory({
|
||||
name: 'Apollo GraphQL',
|
||||
icon: 'simple-icons:apollographql',
|
||||
|
|
|
|||
Loading…
Reference in a new issue