File tree 2 files changed +8
-10
lines changed
2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export default async function NewsDetail({ params }: Props) {
53
53
< Breadcrumb
54
54
items = { [
55
55
{ title : 'Top' , href : '/' } ,
56
- { title : 'news ' , href : '/news' } ,
56
+ { title : 'News ' , href : '/news' } ,
57
57
{ title : data . title , href : `/news/${ slug } ` } ,
58
58
] }
59
59
/>
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { Metadata } from 'next';
3
3
import Link from 'next/link' ;
4
4
import { getMarkdowns } from '../../utils/markdown' ;
5
5
import style from './page.module.scss' ;
6
+ import { Breadcrumb } from '@/components/Breadcrumb' ;
6
7
import { HeroImage } from '@/components/HeroImage' ;
7
8
import { NewsPageList } from '@/components/news-page-list/news-page-list' ;
8
9
@@ -27,15 +28,12 @@ export default async function News() {
27
28
< main className = { style . main } >
28
29
< div className = { style . hero } >
29
30
< HeroImage title = '新着情報' type = 'default' blur = { true } />
30
- < div className = { style . breadcrumb } >
31
- < Link href = '/' className = { style . breadcrumbLink } >
32
- Top
33
- </ Link >
34
- < p className = { style . breadcrumbLink } > > </ p >
35
- < Link href = '/news' className = { style . breadcrumbLink } >
36
- News
37
- </ Link >
38
- </ div >
31
+ < Breadcrumb
32
+ items = { [
33
+ { title : 'Top' , href : '/' } ,
34
+ { title : 'News' , href : '/news' } ,
35
+ ] }
36
+ />
39
37
</ div >
40
38
< div className = { style . contents } >
41
39
< h1 className = { style . contentTitle } > ニュース一覧</ h1 >
You can’t perform that action at this time.
0 commit comments