Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8/6サブイベントのスポンサー情報を更新 #161

Merged
merged 2 commits into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/subevents/const/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const SUB_EVENTS = [
"一方、定期開催するTSKaigiサブイベントでは、特定の「テーマ」を設定し、そのテーマに関したセッションやLTを募集いたします!皆さんの興味のある領域やテーマの回で、ぜひご参加ください!",
"初回となる今回は、王道「フロントエンド」をテーマとし、TypeScriptとフロントエンドに関するトークを行います!ゲストセッションとして、TSKaigi2024の選考委員も務めてくださったうひょさんさんにもトークを行っていただく予定です。(イベント後は懇親会も予定しています。)",
],
sponsorList: ["TBD"],
sponsorList: ["株式会社LabBase", "株式会社カミナシ", "レバレジーズ株式会社"],
sponsorType: "sponsored",
tags: ["公募枠あり", "オンラインあり", "公式イベント"],
date: new Date("2024-08-06"),
Expand Down
Binary file modified app/subevents/image/subevent_8_6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions app/subevents/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@ const SubEventPage = () => {
<Tag key={tag}>{tag}</Tag>
))}
</div>
<div className="mt-4 w-full text-end text-sm">
{sponsorType === "hosting" ? "実施" : "スポンサー"}: {sponsorList.join("、")}
<div className="mt-4 w-full text-sm flex justify-end">
<div>
{sponsorType === "hosting" ? "実施" : "スポンサー"}: {sponsorList.join("、")}
</div>
Comment on lines +70 to +73
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

text-endで改行が起こると見辛かったため、flexで右に寄せる形に変更

</div>
</div>
</div>
Expand Down
Loading