54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
// ─── 채널 & 포맷 옵션 목 데이터 ─────────────────────────────────────────────
|
|
// DEMO/src/types/studio.ts CHANNEL_OPTIONS 에서 이전
|
|
|
|
import type { ChannelFormatOption } from "@/features/studio/types/studio";
|
|
|
|
export const MOCK_CHANNEL_OPTIONS: ChannelFormatOption[] = [
|
|
{
|
|
channel: 'youtube',
|
|
label: 'YouTube',
|
|
icon: 'youtube',
|
|
formats: [
|
|
{ key: 'shorts', label: 'Shorts', aspectRatio: '9:16' },
|
|
{ key: 'long_form', label: 'Long-form', aspectRatio: '16:9' },
|
|
],
|
|
},
|
|
{
|
|
channel: 'instagram',
|
|
label: 'Instagram',
|
|
icon: 'instagram',
|
|
formats: [
|
|
{ key: 'reels', label: 'Reels', aspectRatio: '9:16' },
|
|
{ key: 'carousel', label: 'Carousel', aspectRatio: '1:1' },
|
|
{ key: 'feed_image', label: 'Feed Image', aspectRatio: '1:1' },
|
|
{ key: 'stories', label: 'Stories', aspectRatio: '9:16' },
|
|
],
|
|
},
|
|
{
|
|
channel: 'naver_blog',
|
|
label: 'Naver Blog',
|
|
icon: 'globe',
|
|
formats: [
|
|
{ key: 'seo_post', label: 'SEO Post', aspectRatio: '16:9' },
|
|
{ key: 'faq_post', label: 'FAQ Post', aspectRatio: '16:9' },
|
|
],
|
|
},
|
|
{
|
|
channel: 'tiktok',
|
|
label: 'TikTok',
|
|
icon: 'tiktok',
|
|
formats: [
|
|
{ key: 'short_video', label: 'Short Video', aspectRatio: '9:16' },
|
|
],
|
|
},
|
|
{
|
|
channel: 'facebook',
|
|
label: 'Facebook',
|
|
icon: 'facebook',
|
|
formats: [
|
|
{ key: 'ad_creative', label: 'Ad Creative', aspectRatio: '1:1' },
|
|
{ key: 'retarget_content', label: 'Retarget Content', aspectRatio: '16:9' },
|
|
],
|
|
},
|
|
];
|