Skip to content

Commit bf396a0

Browse files
committed
LTの概要を追加した
1 parent e2c4a59 commit bf396a0

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

apps/web/app/components/SpeakerPageSection.vue

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,13 @@ const { sessionSpeakers, lightningTalkSpeakers, sponsorSessionSpeakers } = props
5353
</ul>
5454
</section>
5555

56+
<hr class="speaker-hr" />
57+
5658
<section v-if="lightningTalkSpeakers.list.length !== 0" id="lightning-talks" class="speaker-section">
5759
<h3 class="speaker-subtitle">Lightning Talks</h3>
60+
<p>
61+
{{ $t('speaker.lightningTalksDescription') }}
62+
</p>
5863
<ul class="speaker-cards">
5964
<li v-for="speaker in lightningTalkSpeakers.list" :key="speaker.id" class="speaker-card">
6065
<NuxtLink
@@ -204,6 +209,12 @@ const { sessionSpeakers, lightningTalkSpeakers, sponsorSessionSpeakers } = props
204209
text-decoration: none;
205210
}
206211
212+
.speaker-hr {
213+
padding: 50px 0;
214+
border: 0;
215+
border-bottom: 1px solid var(--color-vue-blue);
216+
}
217+
207218
@media (--tablet) {
208219
.speaker {
209220
--speaker-padding: calc(var(--unit) * 2) 0;

apps/web/app/lang/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"end_date": "July 21",
2525
"end_hour": "12",
2626
"end_minute": "00",
27-
"end_ampm": "pm"
27+
"end_ampm": "pm",
28+
"lt_description": "A 5-minute lightning talk! As a special feature of this event, we will be distributing glow sticks to all participants. When you feel a \"thumbs up!\" moment, resonate with the content, or gain new insights during the LT, please wave your glow stick in response! Let's all create an exciting atmosphere for the LT together!"
2829
},
2930
"event": {
3031
"title": "Event",

apps/web/app/lang/ja.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"apply": "申し込む",
3232
"end_date": "7.21",
3333
"end_hour": "24",
34-
"end_minute": "00"
34+
"end_minute": "00",
35+
"lt_description": "制限時間5分のライトニングトーク! 今回の特別企画として、参加者全員にサイリウムをお配りします。LTの内容に「いいね!」と思ったときや、共感したり、新たな気づきを得たりしたときに、サイリウムを振ってリアクションをお願いします! みなさんでLTを盛り上げていきましょう!"
3536
},
3637
"volunteer": {
3738
"title": "当日ボランティア募集",

0 commit comments

Comments
 (0)