17 lines
300 B
JavaScript
17 lines
300 B
JavaScript
/**
|
|
* Repository-managed CV fallback data.
|
|
* Edit this file to maintain CV content without the backend CV plugin.
|
|
*/
|
|
|
|
export default {
|
|
lastUpdated: null,
|
|
experience: [],
|
|
projects: [],
|
|
skills: {},
|
|
skillTypes: {},
|
|
languages: [],
|
|
education: [],
|
|
interests: {},
|
|
interestTypes: {},
|
|
};
|