Skip to content

Commit 62c036d

Browse files
committed
見出しを追加した
1 parent c12dffa commit 62c036d

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

app/components/PhotosPageSection.vue renamed to app/components/NewsPageSection.vue

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
<script setup lang="ts">
2-
import SectionTitle from '~/components/SectionTitle.vue'
3-
import TimetableView from '~/components/timetable/TimetableView.vue'
4-
</script>
5-
61
<template>
72
<section class="photos">
3+
<SectionTitle
4+
id="news"
5+
class="photos_title"
6+
color="vue.blue"
7+
title="News"
8+
yamato-title="お知らせ"
9+
/>
810
<p>
911
Vue Fes Japan 2023 にご参加いただいたみなさん、ありがとうございました。
1012
</p>
@@ -79,6 +81,9 @@ css({
7981
margin: '0 auto',
8082
fontSize: 'calc(16*{fontSize.base})',
8183
},
84+
'.photos_title': {
85+
marginBottom: '40px',
86+
},
8287
'.photos p': {
8388
margin: '0 0 16px',
8489
},

app/pages/index.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { useFeature } from '~/composables/useFeature'
66
import { conferenceTitle } from '~/utils/constants'
77
import { generalOg, twitterOg } from '~/utils/og.constants'
88
import TimetablePageSection from '~/components/TimetablePageSection.vue'
9-
import PhotosPageSection from '~/components/PhotosPageSection.vue'
109
1110
const { canPurchase } = useNamecard()
1211
const { showTimetable } = useFeature()
@@ -21,7 +20,7 @@ useHead({
2120
<main>
2221
<NavPageSectionContainer />
2322
<TopPageSection />
24-
<PhotosPageSection />
23+
<NewsPageSection />
2524
<template v-if="showTimetable">
2625
<TimetablePageSection />
2726
</template>

0 commit comments

Comments
 (0)