chore: team updates, funding cummulative

This commit is contained in:
Timur Ercan
2023-08-14 14:16:04 +02:00
committed by Mythie
parent d5e7f6f4df
commit 63d4216fd1
2 changed files with 25 additions and 6 deletions

View File

@ -26,11 +26,20 @@ export const TEAM_MEMBERS = [
{ {
name: 'Florent Merian', name: 'Florent Merian',
role: 'Marketer - III', role: 'Marketer - III',
salary: 80_000, salary: 'Project-Based',
location: 'France', location: 'France',
engagement: 'Full-Time', engagement: 'Full-Time',
joinDate: 'July 10th, 2023', joinDate: 'July 10th, 2023',
}, },
,
{
name: 'Thilo Konzok',
role: 'Designer',
salary: 'Project-Based',
location: 'Germany',
engagement: 'Full-Time',
joinDate: 'April 26th, 2023',
},
{ {
name: 'David Nguyen', name: 'David Nguyen',
role: 'Software Engineer - III', role: 'Software Engineer - III',
@ -43,16 +52,16 @@ export const TEAM_MEMBERS = [
export const FUNDING_RAISED = [ export const FUNDING_RAISED = [
{ {
date: '2023-05-20', date: '2023-04',
amount: 0, amount: 0,
}, },
{ {
date: '2023-05-20', date: '2023-05',
amount: 300_000, amount: 300_000,
}, },
{ {
date: '2023-07-25', date: '2023-07',
amount: 1_250_000, amount: 1_550_000,
}, },
]; ];
@ -82,6 +91,16 @@ export const SALARY_BANDS = [
seniority: 'Principal', seniority: 'Principal',
salary: 120_000, salary: 120_000,
}, },
{
title: 'Designer - III',
seniority: 'Senior',
salary: 100_000,
},
{
title: 'Designer - IV',
seniority: 'Principal',
salary: 120_000,
},
{ {
title: 'Marketer - I', title: 'Marketer - I',
seniority: 'Junior', seniority: 'Junior',

View File

@ -13,7 +13,7 @@ export type FundingRaisedProps = HTMLAttributes<HTMLDivElement>;
export const FundingRaised = ({ className, ...props }: FundingRaisedProps) => { export const FundingRaised = ({ className, ...props }: FundingRaisedProps) => {
return ( return (
<div className={cn('flex flex-col', className)} {...props}> <div className={cn('flex flex-col', className)} {...props}>
<h3 className="px-4 text-lg font-semibold">Funding Raised</h3> <h3 className="px-4 text-lg font-semibold">Total Funding Raised</h3>
<div className="border-border mt-2.5 flex flex-1 flex-col items-center justify-center rounded-2xl border p-4 shadow-sm hover:shadow"> <div className="border-border mt-2.5 flex flex-1 flex-col items-center justify-center rounded-2xl border p-4 shadow-sm hover:shadow">
<ResponsiveContainer width="100%" height={400}> <ResponsiveContainer width="100%" height={400}>