Add initial cap table

This commit is contained in:
Ephraim Atta-Duncan
2023-08-06 22:46:20 +00:00
committed by Mythie
parent f882be4338
commit 27b42814d8
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',
},
];