From 4244af288a6856c2010fb70d4eca6cf55c700aa8 Mon Sep 17 00:00:00 2001 From: Jameka Echols Date: Sun, 21 Nov 2021 07:34:45 -0600 Subject: [PATCH 1/4] added data for dashboard and updated brit bio for readme and about me --- data/bioData.js | 2 +- data/dashboardData.js | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 data/dashboardData.js diff --git a/data/bioData.js b/data/bioData.js index 4946bf9..b5aa8a9 100644 --- a/data/bioData.js +++ b/data/bioData.js @@ -91,7 +91,7 @@ export const allBioData = [ name:'Brittany Garrett', imageUrl: '/bio/brittany.jpeg', alt:'Brittany', - bio:'I have always been a creative person since I was young. I would draw, write, and create unique things such as poetry, models and designs. I loved vuserIdeo games and anything tech related intrigued me. AsuserIde from my creative abilities and tech interests, I knew I wanted to service disadvantaged communities. I had a curiosity about different healthcare resources for all regardless of their race, access or income. With a background in public health and now the pursuit of a new career path as a software developer, I was excited to learn I could bring all of my interests together to make an application specifically for Black women’s mental health and the expression of their experiences within the workplace. I love the fact that our application, Safespace. welcomes discussion and journaling of workplace taboo topics. I was extremely proud to come together with fellow black female software developers to create a place where women like us can be vulnerable, vocal, and acknowledged. I believe our goal to construct an application that provuserIdes women like me with resources and dialogue that can be used to achieve mental health stability and personal growth was accomplished!', + bio:'For as long as I can remember, I’ve been drawn to express myself creatively. As a child, and even in my adult life, I find myself drawing, writing, and creating unique models and designs. I have a love for video games and all things tech related. Aside from my creative abilities and tech interests, I have a heart to serve underrepresented communities. Growing up in Chicago’s Southside, I’ve seen first hand the result of limited resources and a lack of focus on physical and mental health. Safespace. has allowed me an opportunity to align my background in Public Health with my newly established journey in software development to aid in the creation of a platform welcoming women to discuss and journal workplace taboo topics. It has been a privilege collaborating with fellow black female software developers to create a mechanism where women like us can be vulnerable, vocal, and supported. It has been a goal of mine to help bridge the gap of resources and create dialogue surrounding mental health stability, and I believe Safespace. does exactly that!', socialMedias:[ { id: 1, diff --git a/data/dashboardData.js b/data/dashboardData.js new file mode 100644 index 0000000..7d57d99 --- /dev/null +++ b/data/dashboardData.js @@ -0,0 +1,41 @@ +export const users = [ + { + type: 'users', + value: '9.8 million' + } +] + +export const lostMoney = [ + { + type: 'lost of $$ due to microaggressions', + value: '$450 to $550 billion' + } +] + +export const journals = [ + { + type: 'number of journals logged each day', + value: '410,680' + } +] + +export const topCompanies = [ + { + type:'top industries Black women are in', + value:'Management, business, science & arts' + } +] + +export const climateBW = [ + { + type:'current climate of Black women in US', + value:'meh' + } +] + +export const topTags = [ + { + type:'most journal tag', + value:'microaggression' + } +] \ No newline at end of file From 6f659920332f6d17ea8e1500a357054452c48e00 Mon Sep 17 00:00:00 2001 From: Jameka Echols Date: Sun, 21 Nov 2021 07:42:29 -0600 Subject: [PATCH 2/4] num of companies, added the percentage of black wmen work occupation --- data/dashboardData.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/data/dashboardData.js b/data/dashboardData.js index 7d57d99..794815a 100644 --- a/data/dashboardData.js +++ b/data/dashboardData.js @@ -22,9 +22,17 @@ export const journals = [ export const topCompanies = [ { type:'top industries Black women are in', - value:'Management, business, science & arts' + value:'35% of Black women work in Management, Business, Science & Arts' } ] + +export const numOfCompanies = [ + { + type:'number of companies recommended', + value: '6,711' + } +] + export const climateBW = [ { From cd5df933c533ba19240ad83acf5bdcead4e1774b Mon Sep 17 00:00:00 2001 From: Jameka Echols Date: Sun, 21 Nov 2021 08:10:58 -0600 Subject: [PATCH 3/4] one object for dashboard --- data/dashboardData.js | 58 +++++++------------------------------------ 1 file changed, 9 insertions(+), 49 deletions(-) diff --git a/data/dashboardData.js b/data/dashboardData.js index 794815a..0b77fa8 100644 --- a/data/dashboardData.js +++ b/data/dashboardData.js @@ -1,49 +1,9 @@ -export const users = [ - { - type: 'users', - value: '9.8 million' - } -] - -export const lostMoney = [ - { - type: 'lost of $$ due to microaggressions', - value: '$450 to $550 billion' - } -] - -export const journals = [ - { - type: 'number of journals logged each day', - value: '410,680' - } -] - -export const topCompanies = [ - { - type:'top industries Black women are in', - value:'35% of Black women work in Management, Business, Science & Arts' - } -] - -export const numOfCompanies = [ - { - type:'number of companies recommended', - value: '6,711' - } -] - - -export const climateBW = [ - { - type:'current climate of Black women in US', - value:'meh' - } -] - -export const topTags = [ - { - type:'most journal tag', - value:'microaggression' - } -] \ No newline at end of file +export const dashboardData = { + topCompanies: '35% of Black women work in Management, Business, Science & Arts', + numberOfCompanies: '6,711', + currentClimate: 'meh', + topTags: 'microaggression', + lostMoney: '$450 to $550 billion', + numberOfJournals: '410,680', + totalUsers: '9.8 million' +} \ No newline at end of file From 190a10adb8a3a92ce6a99353bca1bc4242424cd4 Mon Sep 17 00:00:00 2001 From: Jameka Echols Date: Mon, 22 Nov 2021 22:46:56 -0600 Subject: [PATCH 4/4] removing the data file --- data/dashboardData.js | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 data/dashboardData.js diff --git a/data/dashboardData.js b/data/dashboardData.js deleted file mode 100644 index 0b77fa8..0000000 --- a/data/dashboardData.js +++ /dev/null @@ -1,9 +0,0 @@ -export const dashboardData = { - topCompanies: '35% of Black women work in Management, Business, Science & Arts', - numberOfCompanies: '6,711', - currentClimate: 'meh', - topTags: 'microaggression', - lostMoney: '$450 to $550 billion', - numberOfJournals: '410,680', - totalUsers: '9.8 million' -} \ No newline at end of file