Skip to content

Commit

Permalink
Merge pull request #1 from vuejs-jp/feature/photos
Browse files Browse the repository at this point in the history
Feature/photos
  • Loading branch information
jiyuujin authored Nov 16, 2023
2 parents 9e62d72 + ecd9af4 commit 275060a
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/assets/locale/all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ export default {
* message section
*/
message_subtitle: '想い',
/**
* news section
*/
news_subtitle1: 'Vue Fes Japan 2023 にご参加いただいたみなさん、ありがとうございました。',
news_subtitle2:
'当日撮影された写真を CC0 ライセンスにて公開しますので、ブログや SNS などにご自由にお使いください。',
/**
* timetable section
*/
Expand Down Expand Up @@ -485,6 +491,12 @@ export default {
* message section
*/
message_subtitle: 'Thought',
/**
* news section
*/
news_subtitle1: 'Thank you to everyone who attended Vue Fes Japan 2023.',
news_subtitle2:
'Photos taken on the day will be released under a CC0 license, so please feel free to use them on your blogs, social networking sites, etc.',
/**
* timetable section
*/
Expand Down
101 changes: 101 additions & 0 deletions app/components/NewsPageSection.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<template>
<section class="photos">
<SectionTitle
id="news"
class="photos_title"
color="vue.blue"
title="News"
yamato-title="お知らせ"
/>
<p>{{ $t('top.news_subtitle1') }}</p>
<p>{{ $t('top.news_subtitle2') }}</p>
<ul>
<li>
<NuxtLink to="https://photos.app.goo.gl/fKbJAQRuzGBA8GAz7" target="_blank">
クラウドサイントラック
</NuxtLink>
</li>
<li>
<NuxtLink to="https://photos.app.goo.gl/Sw3UK3fxzRTJieX39" target="_blank">
メドピアトラック
</NuxtLink>
</li>
<li>
<NuxtLink to="https://photos.app.goo.gl/RK76fpsSfmfKVPjL9" target="_blank">
エムスリーやっていきトラック
</NuxtLink>
</li>
<li>
<NuxtLink to="https://photos.app.goo.gl/6KKD8TqasLDSa98Q7" target="_blank">
Vueトラック
</NuxtLink>
</li>
<li>
<NuxtLink to="https://photos.app.goo.gl/crd4ftGMSNUPPkjF6" target="_blank"> 受付 </NuxtLink>
</li>
<li>
<NuxtLink to="https://photos.app.goo.gl/QsxLYZq4hQVd6oa59" target="_blank">
Vue Fes Store
</NuxtLink>
</li>
<li>
<NuxtLink to="https://photos.app.goo.gl/ArsmgEEh2G4QdQr29" target="_blank">
クリエイティブウォール
</NuxtLink>
</li>
<li>
<NuxtLink to="https://photos.app.goo.gl/Zv1dahbu7Fcstgvz5" target="_blank">
リフレッシュメントスペース
</NuxtLink>
</li>
<li>
<NuxtLink to="https://photos.app.goo.gl/RqKxcjP7TcbiziwW8" target="_blank">
スポンサーブース
</NuxtLink>
</li>
<li>
<NuxtLink to="https://photos.app.goo.gl/XTdtY6kwyspjTGu16" target="_blank">
アフターパーティー
</NuxtLink>
</li>
</ul>
</section>
<VoiceAudioSpectrum />
</template>

<style lang="ts" scoped>
css({
'section': {
padding: '120px 20px 120px',
},
'.photos': {
display: 'flex',
flexDirection: 'column',
maxWidth: '1080px',
margin: '0 auto',
fontSize: 'calc(16*{fontSize.base})',
},
'.photos_title': {
marginBottom: '40px',
},
'.photos p': {
margin: '0 0 16px',
},
'.photos li': {
listStyle: 'disc',
listStylePosition: 'inside',
},
'.photos a': {
color: '{color.primary.500}',
textDecoration: 'underline',
},
'.photos a:hover': {
textDecoration: 'none',
},
'@mobile': {
'section': {
padding: '80px 20px 120px',
},
},
})
</style>
1 change: 1 addition & 0 deletions app/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ useHead({
<main>
<NavPageSectionContainer />
<TopPageSection />
<NewsPageSection />
<template v-if="showTimetable">
<TimetablePageSection />
</template>
Expand Down

0 comments on commit 275060a

Please sign in to comment.