Skip to content

Instantly share code, notes, and snippets.

@carsonfarmer
Created November 22, 2018 05:45
Show Gist options
  • Save carsonfarmer/59581e1011dd38f419c9916844e86abf to your computer and use it in GitHub Desktop.
Save carsonfarmer/59581e1011dd38f419c9916844e86abf to your computer and use it in GitHub Desktop.
Default Profile Structure
// defaultProfile is a simple user-profile JSON data model
const defaultProfile = {
name: {
first: 'first',
last: 'last',
other: []
},
bio: 'you should write something interesting here...',
pic: {
url: 'https://i.stack.imgur.com/l60Hf.png'
},
dob: null,
social: [
{
service: 'github',
username: null,
url: null
}
],
work: [
{
title: 'unemployed',
employer: null,
start: null,
url: null,
end: null
}
]
}
export { defaultProfile }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment