forked from ubucon-asia/2024.ubucon.asia
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from lego37yoon/main
개인 후원 및 회비 회원 페이지 추가
- Loading branch information
Showing
5 changed files
with
115 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
export const patrons = [ | ||
{ | ||
name: "강성진", | ||
org: null | ||
}, | ||
{ | ||
name: "윤성수", | ||
org: "시토리" | ||
}, | ||
{ | ||
name: "한영빈", | ||
org: "우분투한국커뮤니티" | ||
} | ||
] | ||
|
||
export const ukc = [ | ||
{ | ||
name: "한영빈", | ||
org: "우분투한국커뮤니티" | ||
}, | ||
{ | ||
name: "김세영", | ||
org: "Canonical Ltd." | ||
} | ||
] |
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,43 @@ | ||
--- | ||
layout: /src/layouts/MarkdownLayout.astro | ||
title: Individual Patrons and Members with dues | ||
--- | ||
import { patrons, ukc } from "@data/patrons"; | ||
import { Col, Row, Card } from "@canonical/react-components" | ||
|
||
|
||
## Individual patrons | ||
|
||
People listed below are Individual patrons of UbuCon Korea 2024. | ||
|
||
We got total {patrons.length} individual patron{patrons.length > 1 ? "s":""} this year! | ||
|
||
Thanks to every patrons for supporting our event! | ||
|
||
> **Note** Only patrons who agreed to display their names are displayed here. | ||
<Row> | ||
{patrons.map((person) => ( | ||
<Col size={3}> | ||
<Card title={person.name}>{person.org ?? "-"}</Card> | ||
</Col> | ||
))} | ||
</Row> | ||
|
||
## Ubuntu Korea Community Members with dues | ||
|
||
People listed below are Ubuntu Korea Community Members with dues who bought tickets to participate in UbuCon Korea 2024. | ||
|
||
We got total {ukc.length} participant{ukc.length > 1 ? "s":""} this year! | ||
|
||
Thanks to every members for supporting our event! | ||
|
||
> **Note** Only members who agreed to display their names are displayed here. | ||
<Row> | ||
{ukc.map((person) => ( | ||
<Col size={3}> | ||
<Card title={person.name}>{person.org ?? "-"}</Card> | ||
</Col> | ||
))} | ||
</Row> |
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,41 @@ | ||
--- | ||
layout: /src/layouts/MarkdownLayout.astro | ||
title: 개인 후원자 및 회비 회원 | ||
--- | ||
import { patrons, ukc } from "@data/patrons"; | ||
import { Col, Row, Card } from "@canonical/react-components" | ||
|
||
|
||
## 개인 후원자 | ||
|
||
금번 우부콘 코리아 2024에서는 총 {patrons.length}명의 참가자{patrons.length > 1 ? " 분들":""}께서 후원해주셨습니다! | ||
|
||
후원해주신 모든 후원자 분들께 감사드립니다! | ||
|
||
> 개인 후원자 정보 공개에 동의한 분들의 성함 및 소속만이 여기 등재됩니다. | ||
<Row> | ||
{patrons.map((person) => ( | ||
<Col size={3}> | ||
<Card title={person.name}>{person.org ?? "-"}</Card> | ||
</Col> | ||
))} | ||
</Row> | ||
|
||
## 회비 회원 | ||
|
||
아래는 본 행사를 개최하는 우분투한국커뮤니티의 회비 회원 중 행사에 참여하신 분들의 목록입니다. | ||
|
||
올해 총 {ukc.length}명의 참가자{ukc.length > 1 ? " 분들":""}께서 참여해주셨습니다! | ||
|
||
참여해주신 모든 회비 회원님께 감사드립니다. | ||
|
||
> 행사에 참여한 우분투한국커뮤니티의 회비 회원 중 정보 공개에 동의하신 분들의 성함 및 소속만이 여기 등재됩니다. | ||
<Row> | ||
{ukc.map((person) => ( | ||
<Col size={3}> | ||
<Card title={person.name}>{person.org ?? "-"}</Card> | ||
</Col> | ||
))} | ||
</Row> |