diff --git a/src/app/(payload)/admin/importMap.js b/src/app/(payload)/admin/importMap.js index bb66d81..a3865a0 100644 --- a/src/app/(payload)/admin/importMap.js +++ b/src/app/(payload)/admin/importMap.js @@ -31,6 +31,7 @@ import { TenantSelector as TenantSelector_d6d5f193a167989e2ee7d14202901e62 } fro import { TenantSelectionProvider as TenantSelectionProvider_d6d5f193a167989e2ee7d14202901e62 } from '@payloadcms/plugin-multi-tenant/rsc' import { TenantDashboardView as TenantDashboardView_1468a86d093d5b2444131ed5ce14599e } from '@/components/admin/TenantDashboardView' import { YouTubeAnalyticsDashboardView as YouTubeAnalyticsDashboardView_cda40d57a6ea0fffb8f4ea8808c0cdea } from '@/components/admin/YouTubeAnalyticsDashboardView' +import { ContentCalendarView as ContentCalendarView_dc5cac4fdd3c3b500e8b5909dfd5ffd5 } from '@/components/admin/ContentCalendarView' import { CollectionCards as CollectionCards_f9c02e79a4aed9a3924487c0cd4cafb1 } from '@payloadcms/next/rsc' export const importMap = { @@ -67,5 +68,6 @@ export const importMap = { "@payloadcms/plugin-multi-tenant/rsc#TenantSelectionProvider": TenantSelectionProvider_d6d5f193a167989e2ee7d14202901e62, "@/components/admin/TenantDashboardView#TenantDashboardView": TenantDashboardView_1468a86d093d5b2444131ed5ce14599e, "@/components/admin/YouTubeAnalyticsDashboardView#YouTubeAnalyticsDashboardView": YouTubeAnalyticsDashboardView_cda40d57a6ea0fffb8f4ea8808c0cdea, + "@/components/admin/ContentCalendarView#ContentCalendarView": ContentCalendarView_dc5cac4fdd3c3b500e8b5909dfd5ffd5, "@payloadcms/next/rsc#CollectionCards": CollectionCards_f9c02e79a4aed9a3924487c0cd4cafb1 } diff --git a/src/components/admin/ContentCalendarView.tsx b/src/components/admin/ContentCalendarView.tsx new file mode 100644 index 0000000..dfea8a4 --- /dev/null +++ b/src/components/admin/ContentCalendarView.tsx @@ -0,0 +1,10 @@ +'use client' + +import React from 'react' +import { ContentCalendar } from './ContentCalendar' + +export const ContentCalendarView: React.FC = () => { + return +} + +export default ContentCalendarView diff --git a/src/components/admin/YouTubeAnalyticsNavLinks.tsx b/src/components/admin/YouTubeAnalyticsNavLinks.tsx index 0858fe5..f13a02c 100644 --- a/src/components/admin/YouTubeAnalyticsNavLinks.tsx +++ b/src/components/admin/YouTubeAnalyticsNavLinks.tsx @@ -8,6 +8,7 @@ export const YouTubeAnalyticsNavLinks: React.FC = () => { const links = [ { href: '/admin/youtube-analytics', label: 'YouTube Analytics' }, + { href: '/admin/content-calendar', label: 'Content-Kalender' }, ] return ( diff --git a/src/payload.config.ts b/src/payload.config.ts index 4fbcc2e..2750768 100644 --- a/src/payload.config.ts +++ b/src/payload.config.ts @@ -141,6 +141,10 @@ export default buildConfig({ Component: '@/components/admin/YouTubeAnalyticsDashboardView#YouTubeAnalyticsDashboardView', path: '/youtube-analytics', }, + ContentCalendar: { + Component: '@/components/admin/ContentCalendarView#ContentCalendarView', + path: '/content-calendar', + }, }, }, },