mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 18:51:37 +10:00
feat: open page
This commit is contained in:
committed by
Mythie
parent
dc58f77c61
commit
f882be4338
95
apps/marketing/src/app/(marketing)/open/data.ts
Normal file
95
apps/marketing/src/app/(marketing)/open/data.ts
Normal file
@ -0,0 +1,95 @@
|
||||
export const TEAM_MEMBERS = [
|
||||
{
|
||||
name: 'Timur Ercan',
|
||||
role: 'Co-Founder, CEO',
|
||||
salary: 95_000,
|
||||
location: 'Germany',
|
||||
joinDate: 'November 14th, 2022',
|
||||
},
|
||||
{
|
||||
name: 'Lucas Smith',
|
||||
role: 'Co-Founder, CTO',
|
||||
salary: 95_000,
|
||||
location: 'Australia',
|
||||
joinDate: 'April 19th, 2023',
|
||||
},
|
||||
{
|
||||
name: 'Ephraim Atta-Duncan',
|
||||
role: 'Software Engineer - Intern (Part-Time)',
|
||||
salary: 15_000,
|
||||
location: 'Ghana',
|
||||
joinDate: 'June 6th, 2023',
|
||||
},
|
||||
{
|
||||
name: 'Florent Merian',
|
||||
role: 'Marketer - III',
|
||||
salary: 80_000,
|
||||
location: 'France',
|
||||
joinDate: 'July 10th, 2023',
|
||||
},
|
||||
{
|
||||
name: 'David Nguyen',
|
||||
role: 'Software Engineer - III',
|
||||
salary: 100_000,
|
||||
location: 'Australia',
|
||||
joinDate: 'July 26th, 2023',
|
||||
},
|
||||
];
|
||||
|
||||
export const FUNDING_RAISED = [
|
||||
{
|
||||
date: '2023-05-20',
|
||||
amount: 0,
|
||||
},
|
||||
{
|
||||
date: '2023-05-20',
|
||||
amount: 300_000,
|
||||
},
|
||||
{
|
||||
date: '2023-07-25',
|
||||
amount: 1_250_000,
|
||||
},
|
||||
];
|
||||
|
||||
export const SALARY_BANDS = [
|
||||
{
|
||||
title: 'Software Engineer - Intern',
|
||||
seniority: 'Intern',
|
||||
salary: 30_000,
|
||||
},
|
||||
{
|
||||
title: 'Software Engineer - I',
|
||||
seniority: 'Junior',
|
||||
salary: 60_000,
|
||||
},
|
||||
{
|
||||
title: 'Software Engineer - II',
|
||||
seniority: 'Mid',
|
||||
salary: 80_000,
|
||||
},
|
||||
{
|
||||
title: 'Software Engineer - III',
|
||||
seniority: 'Senior',
|
||||
salary: 100_000,
|
||||
},
|
||||
{
|
||||
title: 'Software Engineer - IV',
|
||||
seniority: 'Principal',
|
||||
salary: 120_000,
|
||||
},
|
||||
{
|
||||
title: 'Marketer - I',
|
||||
seniority: 'Junior',
|
||||
salary: 50_000,
|
||||
},
|
||||
{
|
||||
title: 'Marketer - II',
|
||||
seniority: 'Mid',
|
||||
salary: 65_000,
|
||||
},
|
||||
{
|
||||
title: 'Marketer - III',
|
||||
seniority: 'Senior',
|
||||
salary: 80_000,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user