cms.c2sgmbh/src/components/admin/YouTubeAnalyticsDashboardView.tsx
Martin Porwoll 06c93ba05c feat: add YouTube Analytics Dashboard custom admin view
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>
2026-02-13 13:50:35 +00:00

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