Skip to content

Commit

Permalink
Refactor: modify main page design.
Browse files Browse the repository at this point in the history
  • Loading branch information
jungmir committed Jun 1, 2024
1 parent bfe963a commit 774836b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
Binary file modified public/images/introduceSlogan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/locale/English/translation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const EnglishTranslation = {
"수원 컨벤션 센터": "Suwon Convention Center",
"2024.10.25": "October 25, 2024",
"2024.10.27": "October 27, 2024",
"10번째 파이콘 한국에 여러분을 초대합니다.": "Join us for the 10th PyCon in Korea.",
// Tutorial Page translations
"PyCon Korea 2024 튜토리얼 진행자 모집": "Recruitment of Tutorial Instructors for PyCon Korea 2024",
"PyCon Korea 2024 참가자 분들께 새로운 기술, 라이브러리를 전수해주실 진행자 분들을 모집합니다.": "We are looking for instructors to teach new technologies and libraries to participants at PyCon Korea 2024.",
Expand All @@ -77,6 +78,7 @@ const EnglishTranslation = {
"대한민국 실정법에 위반이 없어야 합니다.": "There must be no violations of South Korean laws.",
"PyCon Korea 2024 컨퍼런스 티켓을 구매하지 않더라도 튜토리얼 진행이 가능합니다.": "You can conduct a tutorial even if you do not purchase a PyCon Korea 2024 conference ticket.",
"문의": "Contact",
// About Page translations
"파이콘 한국이란": "About PyCon Korea",
"파이콘은 세계 각국의 파이썬 프로그래밍 언어 커뮤니티에서 주관하는 비영리 컨퍼런스입니다. 한국에서는 처음으로 열린 파이콘 한국 2014를 시작으로 파이콘 한국 준비위원회는 건강한 국내 파이썬 생태계에 지속적인 보탬이 되고자, 커뮤니티 멤버들의 자발적인 봉사로 운영되고 있습니다.":
"PyCon is a non-commercial conference held by Python Programming Communities over the world. PyCon Korea has been successfully held in several years with a group of volunteers called ‘PyCon Korea Organizing Team’, who support the local Korean Python community.",
Expand Down
19 changes: 14 additions & 5 deletions src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ const Home = () => {
</Container>
<Container>
<Block className="vertical">
<span className="vertical-item peach-puzz">
10번째 파이콘 한국에<br /> 여러분을 초대합니다.
</span>
<MediumText className="vertical-item peach-puzz">
{t("10번째 파이콘 한국에 여러분을 초대합니다.")}
</MediumText>
<img className="vertical-item" src="images/logo.png" alt="logo.png" />
</Block>
</Container>
<Container className="vertical">
<span className="purple">{t("2024.10.25")} - {t("2024.10.27")}</span>
<span className="yellow">{t("수원 컨벤션 센터")}</span>
<BigText className="purple">{t("2024.10.25")} - {t("2024.10.27")}</BigText>
<BigText className="yellow">{t("수원 컨벤션 센터")}</BigText>
</Container>
</Page>
);
Expand All @@ -39,4 +39,13 @@ const Block = styled.div`
border-radius: 16px;
background-color: #141414;
padding: 2rem 10rem;
align-items: center;
`;

const BigText = styled.span`
font-size: xx-large;
`

const MediumText = styled.span`
font-size: larger;
`

0 comments on commit 774836b

Please sign in to comment.