Skip to content

Commit

Permalink
Merge pull request #161 from tskaigi/feat/update-sponsor-list-#1
Browse files Browse the repository at this point in the history
8/6サブイベントのスポンサー情報を更新
  • Loading branch information
yuta-ike authored Aug 11, 2024
2 parents d826328 + 9a24d39 commit af5eccc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/subevents/const/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ type SubEvent = {

export const SUB_EVENTS = [
{
title: "TSKaigiサブイベント #1 フロントエンド",
title: "TSKaigi Mashup #1 フロントエンド",
description: [
"TSKaigiサブイベントは、TypeScriptコミュニティの活性化のために、TSKaigi運営チームが開催する定期イベントです!",
"オンライン・オフライン合わせて2000名以上にご参加いただいたTSKaigi2024では、フロントエンドからハードウェアまで、様々な分野のセッションを展開しました。",
"一方、定期開催する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>
</div>
</div>
</div>
Expand Down

0 comments on commit af5eccc

Please sign in to comment.