Skip to content

Commit 10f5ad0

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into feat/IN-238
2 parents fb82386 + fec88cc commit 10f5ad0

179 files changed

Lines changed: 4048 additions & 680 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/(protected)/(channelLinked)/channel/page.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import type { Metadata } from 'next'
2+
import { ChannelPage } from '@/pages/channel'
3+
4+
const title = '내 채널 분석 대시보드 | 인플레이스'
5+
const description =
6+
'구독자 추이, 참여율, 시청자 분포를 한눈에 분석하고 카테고리 평균 대비 내 채널의 위치를 데이터로 확인하세요.'
7+
8+
export const metadata: Metadata = {
9+
title,
10+
description,
11+
openGraph: {
12+
title,
13+
description,
14+
images: [{ url: '/og-channel-analyze.png' }],
15+
},
16+
twitter: {
17+
card: 'summary_large_image',
18+
title,
19+
description,
20+
images: ['/og-channel-analyze.png'],
21+
},
22+
}
23+
24+
export default function Page() {
25+
return <ChannelPage />
26+
}

app/(protected)/(channelLinked)/influencer/layout.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/(protected)/(channelLinked)/videos/[videoId]/page.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import type { Metadata } from 'next'
2+
import { VideoDetailPage } from '@/pages/videoDetail'
3+
4+
export const metadata: Metadata = {
5+
title: '영상 분석 | 인플레이스',
6+
openGraph: { title: '영상 분석 | 인플레이스' },
7+
twitter: { title: '영상 분석 | 인플레이스' },
8+
}
9+
10+
export default function Page() {
11+
return <VideoDetailPage />
12+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import type { Metadata } from 'next'
2+
3+
const description =
4+
'내 유튜브 영상별 조회수, 참여율, VPH, Outlier 지수를 분석해 성과 높은 콘텐츠 패턴을 발견하세요.'
5+
6+
export const metadata: Metadata = {
7+
description,
8+
openGraph: {
9+
description,
10+
images: [{ url: '/og-channel-score.png' }],
11+
},
12+
twitter: {
13+
card: 'summary_large_image',
14+
description,
15+
images: ['/og-channel-score.png'],
16+
},
17+
}
18+
19+
export default function VideosLayout({
20+
children,
21+
}: {
22+
children: React.ReactNode
23+
}) {
24+
return children
25+
}

app/(protected)/(channelLinked)/videos/page.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import type { Metadata } from 'next'
2+
import { VideosPage } from '@/pages/videos'
3+
4+
export const metadata: Metadata = {
5+
title: '영상 분석 대시보드 | 인플레이스',
6+
openGraph: { title: '영상 분석 대시보드 | 인플레이스' },
7+
twitter: { title: '영상 분석 대시보드 | 인플레이스' },
8+
}
9+
10+
export default function Page() {
11+
return <VideosPage />
12+
}

app/(protected)/(channelLinked)/influencer/[channelId]/page.ts renamed to app/(protected)/influencer/[channelId]/page.ts

File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { BookmarkedInfluencerPage as default } from '@/pages/influencer'

0 commit comments

Comments
 (0)