-
Notifications
You must be signed in to change notification settings - Fork 9
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 #383 from scalamatsuri/master
Production! Release 2024-06-15 14:33:51
- Loading branch information
Showing
4 changed files
with
59 additions
and
6 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
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,52 @@ | ||
<i18n lang="yaml"> | ||
en: | ||
title: 'Thank You' | ||
overview: | | ||
ScalaMatsuri 2024 came out to be another successful one thanks in many parts to sponsors, speakers, staffs, and your attendance!<br/> | ||
We owe you great gratitude, and we hope to see you again next time. Please register to Doorkeeper to get notified. | ||
ja: | ||
title: '開催御礼' | ||
overview: | | ||
ScalaMatsuri 2024 は参加者、スピーカー、スポンサー、スタッフ等、皆様のおかげで盛況のうちに終了しました。<br/> | ||
ご来場・ご協力いただいた皆様、ありがとうございました。<br/> | ||
また、下記Doorkeeperのリンクよりメンバー登録をしておいてくださると、次回開催の情報をいち早くゲットできます! | ||
</i18n> | ||
|
||
<template> | ||
<section class="content"> | ||
<div class="content_inner"> | ||
<h2 class="content_title"> | ||
{{ t('title') }} | ||
</h2> | ||
<p class="content_text"> | ||
<span v-html="t('overview')" /> | ||
</p> | ||
</div> | ||
</section> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const { t } = useI18n() | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.content { | ||
padding: 0 20px; | ||
text-align: center; | ||
max-width: $pcMinWidth - 40px; | ||
margin: 0 auto 50px; | ||
} | ||
.content_title { | ||
display: inline-block; | ||
margin-top: 40px; | ||
font-weight: bold; | ||
font-size: 48px; | ||
color: #bd3844; | ||
} | ||
.content_text { | ||
margin-top: 40px; | ||
font-size: 16px; | ||
line-height: 28px; | ||
} | ||
</style> |
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