-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a83e04a
commit 22d00cf
Showing
8 changed files
with
67 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
{ | ||
"header": { | ||
"codeOfConduct": "Code of Conduct", | ||
"subtitle": "Women in Software Engineering Japan" | ||
"subtitle": "Women in Software Engineering Japan", | ||
"team": "Team" | ||
}, | ||
"home": { | ||
"helloWorld": "✨ Hello World ✨", | ||
"joinUs": "✨ Join us on Slack ✨", | ||
"paragraph1": "Many of us were saddened to hear of the sudden closure of Women Who Code. There is a need for an organization to empower diverse women in technology careers in Tokyo and across Japan.", | ||
"paragraph2": "We are not giving up on this mission. Please join us in rebuilding community so that we can empower women in Japan in Software Engineering careers.", | ||
"paragraph3": "Our events target professional women in software careers with 2+ years of experience. Beginners to seasoned professionals are welcome to participate. While this organization focuses on women, all genders are welcome at our events. Software-adjacent roles like Data Science, Product, UI/UX, Machine Learning, etc., are welcome, too." | ||
}, | ||
"sidebar": { | ||
"codeOfConduct": "Code of Conduct", | ||
"team": "Team" | ||
}, | ||
"team": { | ||
"title": "✨ Leadership Team ✨" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
{ | ||
"header": { | ||
"codeOfConduct": "行動規範", | ||
"subtitle": "ウーマン・イン・ソフトウェアエンジニアリング" | ||
"subtitle": "ウーマン・イン・ソフトウェアエンジニアリング", | ||
"team": "チーム" | ||
}, | ||
"home": { | ||
"helloWorld": "✨ Hello 世界 ✨", | ||
"joinUs": "✨ スラックに参加する ✨", | ||
"paragraph1": "Women Who Code(WWCode)の活動中止のニュースに対し、多くの人々が悲しみました。東京や日本全体で、IT業界の多様な女性を支援する組織が必要とされています。", | ||
"paragraph2": "この使命を諦めるつもりはありません。WWCodeの志を引き継ぐために、日本の女性がソフトウェアエンジニアとしてキャリアを築けるよう、私たちと共にコミュニティを再構築していきます。", | ||
"paragraph3": "私たちのイベントは、2年以上の経験を持つITプロフェッショナルの女性を中心に、新卒からベテランまでどなたでも参加できるイベントをやっています。この組織は女性に焦点を当てていますが、イベントにはすべてのジェンダーの方が歓迎されています。また、データサイエンティスト、プロダクトマネジャー、UI/UXデザイナー、機械学習エンジニアなどのソフトウェアに関連した役割も歓迎いたします。" | ||
}, | ||
"sidebar": { | ||
"codeOfConduct": "Code of Conduct", | ||
"team": "チーム" | ||
}, | ||
"team": { | ||
"title": "✨ リーダーシップ・チーム ✨" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { FC } from 'react' | ||
import Container from '@mui/material/Container' | ||
import Typography from '@mui/material/Typography'; | ||
import { useTranslation } from 'react-i18next'; | ||
|
||
const Team: FC = () => { | ||
const { t } = useTranslation(); | ||
|
||
return <Container style={{ padding: 32 }}> | ||
<Typography variant="h1">{t('team.title')}</Typography> | ||
</Container> | ||
} | ||
|
||
export default Team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { describe, expect, it } from 'vitest' | ||
import { render } from '@/tests/customRender' | ||
import { screen } from '@testing-library/react' | ||
import Team from '../Team'; | ||
|
||
describe('Team', () => { | ||
it('should render the Team page', async () => { | ||
render(<Team />) | ||
const title = await screen.findByText('✨ Leadership Team ✨') | ||
expect(title).toBeVisible() | ||
}) | ||
}); |