mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 18:34:13 +00:00
Custom admin view at /admin/youtube-analytics with 4 tabs: - Performance: Views, Watch Time, CTR, Subscribers with period comparison - Pipeline: Status distribution, scheduled videos, overdue tasks - Goals: Monthly target progress bars and custom KPIs - Community: Sentiment analysis, response time, top topics Includes channel selector, period selector (7d/30d/90d), and sidebar nav link in the YouTube section. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
263 B
TypeScript
10 lines
263 B
TypeScript
'use client'
|
|
|
|
import React from 'react'
|
|
import { YouTubeAnalyticsDashboard } from './YouTubeAnalyticsDashboard'
|
|
|
|
export const YouTubeAnalyticsDashboardView: React.FC = () => {
|
|
return <YouTubeAnalyticsDashboard />
|
|
}
|
|
|
|
export default YouTubeAnalyticsDashboardView
|