Skip to content

Commit

Permalink
adding some folks
Browse files Browse the repository at this point in the history
Signed-off-by: Frances Coronel <[email protected]>
  • Loading branch information
FrancesCoronel committed Aug 24, 2023
1 parent 0359426 commit 95b1db0
Show file tree
Hide file tree
Showing 28 changed files with 671 additions and 178 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# Sentry Auth Token
.sentryclirc
82 changes: 77 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,84 @@ Our goal is to increase visibility and access to valuable opportunities.

Or just [create an issue](https://github.com/Latina-Dev/latina-dev/issues/new/choose) - any little bit of help counts! 😊

## Overview

### Vision

Amplify opportunities for over 1,000 Latina software engineers by 2025.

### Timeline

- the idea started in October 2022
- initial website launched January 2023
- first MVP launched June 2023
- targeting October 2023 for user auth + database

## Member Levels

This is how we categorize members so we can match them with the right opportunities.

### Student

- You are currently enrolled in a degree program or a coding bootcamp
- e.g., bootcamp student, a computer science student, self-taught

### Individual Contributor

- You are currently or were recently employed as a software engineer
- Or you are a recent graduate and are actively looking for a job
- e.g., fullstack engineer, developer advocate, data scientist

### Leader

- You are currently or were recently employed as a manager, director, or executive
- e.g., engineering manager, CTO, technical founder

## Adding a New Member

There should be **two changes** in the PR you open, one for the Markdown file and the other for the image.

### Markdown File

#### 1. Add a new file to the `data/members` directory with the following format: `firstname-lastname.md`.

#### 2. You can use the template below to get started:

```md
---
name: Frances Coronel // first and last name
added: "2023-01-25" // date you were added
level: "Individual Contributor" // see member levels for more info
linkedin: "francescoronel" // your LinkedIn handle
countries: ["Peru"] // your country or coutries of origin
---
```

There are various **optional** fields that you can add as well.

```md
---
github: "FrancesCoronel" // your GitHub handle
twitter: "FrancesCoronel" // your Twitter handle
website: "https://francescoronel.com" // your personal website
affiliation: "Senior Software Engineer at XYZ" // your current title and org
---

Brief bio about yourself. You can use Markdown here.
```

### Image

#### 3. Add an image of yourself in the `public/img/members` folder

- the image must be at least 250px by 250px
- the image must have the same width and height
- the image must have the same name as the file you created in step 1, formatted as `firstname-lastname.jpg`

## Contributors

- [Frances Coronel](https://github.com/FrancesCoronel)
- [Gabriella Corales](https://github.com/EllaCodes4)
- [Fernanda Pérez Gutiérrez](https://github.com/fernperezg97)
- [Isis Harris](https://github.com/latinadeveloper)
- [Amandha W. Barok](https://github.com/amandhawb)
<a href="https://github.com/Latina-Dev/latina-dev/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Latina-Dev/latina-dev" />
</a>

[![Powered by Vercel](/public/img/logos/vercel.svg "Vercel")](https://vercel.com?utm_source=latina-dev&utm_campaign=oss)
2 changes: 1 addition & 1 deletion components/Homepage/Maintainers/Maintainer/Maintainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Maintainer = (props: MaintainerProps) => {
rel="noreferrer"
>
<Image
src={`/img/maintainers/${imagePath}.jpg`}
src={`/img/members/${imagePath}.jpg`}
alt={name}
width="100"
height="100"
Expand Down
4 changes: 2 additions & 2 deletions components/Homepage/Maintainers/Maintainers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ export default function Maintainers() {
<Maintainer
name="Frances Coronel"
github="FrancesCoronel"
imagePath="frances"
imagePath="frances-coronel"
/>
<Maintainer
name="Gabriella Corales"
github="EllaCodes4"
imagePath="gabriella"
imagePath="gabriella-corales"
/>
</div>
</section>
Expand Down
6 changes: 6 additions & 0 deletions data/members/ashley-dennis.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: Ashley Dennis
added: "2023-08-23"
level: "Individual Contributor"
linkedin: "ashley-dennis-dev"
---
6 changes: 6 additions & 0 deletions data/members/francelys-lomeli.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: Francelys Lomeli
added: "2023-08-23"
level: "Individual Contributor"
linkedin: "francelys-lomeli-7a694b1bb"
---
6 changes: 6 additions & 0 deletions data/members/johana-martinez.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: Johana Martinez
added: "2023-08-23"
level: "Individual Contributor"
linkedin: "johana-ma"
---
6 changes: 6 additions & 0 deletions data/members/mayra-navarro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: Mayra Navarro
added: "2023-08-23"
level: "Individual Contributor"
linkedin: "mayralucianavarro"
---
6 changes: 6 additions & 0 deletions data/members/melissa-perez.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: Melissa Perez
added: "2023-08-23"
level: "Individual Contributor"
linkedin: "mperz"
---
43 changes: 0 additions & 43 deletions docs/AddingNewMember.mdx

This file was deleted.

23 changes: 0 additions & 23 deletions docs/MemberLevels.mdx

This file was deleted.

26 changes: 0 additions & 26 deletions docs/Overview.mdx

This file was deleted.

38 changes: 38 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,41 @@ const nextConfig = {
}

module.exports = nextConfig


// Injected content via Sentry wizard below

const { withSentryConfig } = require("@sentry/nextjs");

module.exports = withSentryConfig(
module.exports,
{
// For all available options, see:
// https://github.com/getsentry/sentry-webpack-plugin#options

// Suppresses source map uploading logs during build
silent: true,

org: "latina-dev",
project: "latina-dev",
},
{
// For all available options, see:
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/

// Upload a larger set of source maps for prettier stack traces (increases build time)
widenClientFileUpload: true,

// Transpiles SDK to be compatible with IE11 (increases bundle size)
transpileClientSDK: true,

// Routes browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers (increases server load)
tunnelRoute: "/monitoring",

// Hides source maps from generated client bundles
hideSourceMaps: true,

// Automatically tree-shake Sentry logger statements to reduce bundle size
disableLogger: true,
}
);
Loading

0 comments on commit 95b1db0

Please sign in to comment.