@@ -985,8 +985,8 @@ const PageManager = () => {
985985 < div className = "space-y-8" >
986986 < div className = "flex flex-col gap-3 lg:flex-row lg:items-center lg:justify-between" >
987987 < div >
988- < h2 className = "text-2xl font-bold text-gray-900" > Seiten & Beiträge </ h2 >
989- < p className = "text-sm text-gray-600" >
988+ < h2 className = "text-2xl font-bold text-gray-900 dark:text-gray-100 " > Seiten & Beiträge </ h2 >
989+ < p className = "text-sm text-gray-600 dark:text-gray-300 " >
990990 Verwalte dynamische Seiten, Navigationseinträge und veröffentlichte Beiträge.
991991 </ p >
992992 </ div >
@@ -1013,21 +1013,21 @@ const PageManager = () => {
10131013 < div className = "flex items-center gap-3 border-b border-gray-100 pb-4 mb-4" >
10141014 < Navigation className = "h-5 w-5 text-primary-600" />
10151015 < div >
1016- < p className = "text-sm font-semibold text-gray-900" > Navigation</ p >
1017- < p className = "text-xs text-gray-500" >
1016+ < p className = "text-sm font-semibold text-gray-900 dark:text-gray-100 " > Navigation</ p >
1017+ < p className = "text-xs text-gray-500 dark:text-gray-400 " >
10181018 { dynamicPagesInNav } dynamische Seite{ dynamicPagesInNav === 1 ? '' : 'n' } im Menü
10191019 </ p >
10201020 </ div >
10211021 </ div >
10221022 < div className = "space-y-3" >
10231023 { ( navigation ?. dynamic ?? [ ] ) . map ( ( item ) => (
1024- < div key = { item . id } className = "flex items-center justify-between text-sm text-gray-600" >
1024+ < div key = { item . id } className = "flex items-center justify-between text-sm text-gray-600 dark:text-gray-300 " >
10251025 < span > { item . label } </ span >
10261026 < span className = "text-xs text-gray-400" > /pages/{ item . slug } </ span >
10271027 </ div >
10281028 ) ) }
10291029 { dynamicPagesInNav === 0 && (
1030- < p className = "text-sm text-gray-500" > Noch keine dynamischen Seiten in der Navigation.</ p >
1030+ < p className = "text-sm text-gray-500 dark:text-gray-400 " > Noch keine dynamischen Seiten in der Navigation.</ p >
10311031 ) }
10321032 </ div >
10331033 </ div >
@@ -1036,20 +1036,20 @@ const PageManager = () => {
10361036 < div className = "flex items-center gap-3 border-b border-gray-100 pb-4 mb-4" >
10371037 < Eye className = "h-5 w-5 text-green-600" />
10381038 < div >
1039- < p className = "text-sm font-semibold text-gray-900" > Veröffentlichungen</ p >
1040- < p className = "text-xs text-gray-500" >
1039+ < p className = "text-sm font-semibold text-gray-900 dark:text-gray-100 " > Veröffentlichungen</ p >
1040+ < p className = "text-xs text-gray-500 dark:text-gray-400 " >
10411041 { totalPublishedPages } veröffentlichte Seite{ totalPublishedPages === 1 ? '' : 'n' }
10421042 </ p >
10431043 </ div >
10441044 </ div >
10451045 < div className = "space-y-3" >
10461046 { ( publishedPages ?. publishedSlugs ?? [ ] ) . map ( ( slugValue ) => (
1047- < div key = { slugValue } className = "flex items-center justify-between text-sm text-gray-600" >
1047+ < div key = { slugValue } className = "flex items-center justify-between text-sm text-gray-600 dark:text-gray-300 " >
10481048 < span > /pages/{ slugValue } </ span >
10491049 </ div >
10501050 ) ) }
10511051 { totalPublishedPages === 0 && (
1052- < p className = "text-sm text-gray-500" > Noch keine Seite veröffentlicht.</ p >
1052+ < p className = "text-sm text-gray-500 dark:text-gray-400 " > Noch keine Seite veröffentlicht.</ p >
10531053 ) }
10541054 </ div >
10551055 </ div >
@@ -1058,13 +1058,13 @@ const PageManager = () => {
10581058 < div className = "flex items-center gap-3 border-b border-gray-100 pb-4 mb-4" >
10591059 < Layers className = "h-5 w-5 text-indigo-600" />
10601060 < div >
1061- < p className = "text-sm font-semibold text-gray-900" > Seitenübersicht</ p >
1062- < p className = "text-xs text-gray-500" >
1061+ < p className = "text-sm font-semibold text-gray-900 dark:text-gray-100 " > Seitenübersicht</ p >
1062+ < p className = "text-xs text-gray-500 dark:text-gray-400 " >
10631063 { pages . length } Seite{ pages . length === 1 ? '' : 'n' } insgesamt
10641064 </ p >
10651065 </ div >
10661066 </ div >
1067- < div className = "space-y-3 text-sm text-gray-600" >
1067+ < div className = "space-y-3 text-sm text-gray-600 dark:text-gray-300 " >
10681068 < p >
10691069 < span className = "font-semibold" > Ausgewählt:</ span > { ' ' }
10701070 { selectedPage ? selectedPage . title : 'Keine Seite ausgewählt' }
@@ -1090,11 +1090,11 @@ const PageManager = () => {
10901090 < div className = "grid gap-6 lg:grid-cols-2" >
10911091 < div className = "space-y-4" >
10921092 { loading && pages . length === 0 ? (
1093- < div className = "rounded-2xl border border-gray-200 bg-white p-8 text-center text-gray-500" >
1093+ < div className = "rounded-2xl border border-gray-200 bg-white p-8 text-center text-gray-500 dark:text-gray-400 " >
10941094 Seiten werden geladen…
10951095 </ div >
10961096 ) : pages . length === 0 ? (
1097- < div className = "rounded-2xl border border-dashed border-gray-300 bg-gray-50 p-10 text-center text-gray-600" >
1097+ < div className = "rounded-2xl border border-dashed border-gray-300 bg-gray-50 p-10 text-center text-gray-600 dark:text-gray-300 " >
10981098 Noch keine Seiten vorhanden. Erstelle deine erste Seite, um Beiträge zu veröffentlichen.
10991099 </ div >
11001100 ) : (
0 commit comments