Add initial cap table

This commit is contained in:
Ephraim Atta-Duncan
2023-08-06 22:46:20 +00:00
parent 6b1fcb8193
commit b718bdeb15
5 changed files with 82 additions and 1 deletions

View File

@ -93,3 +93,18 @@ export const SALARY_BANDS = [
salary: 80_000,
},
];
export const CAP_TABLE = [
{
shareholder: 'Founders',
percentage: '75.5',
},
{
shareholder: 'Investors',
percentage: '14.5',
},
{
shareholder: 'Team Pool',
percentage: '10',
},
];