Skip to content

Commit 62b53bf

Browse files
committed
feat: add dark mode support to admin dashboard text elements
1 parent cef69ad commit 62b53bf

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/pages/AdminDashboard.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ const AdminDashboard = () => {
196196
{/* Actions */}
197197
<div className="mb-8 flex flex-col gap-4 md:flex-row md:justify-between md:items-center">
198198
<div>
199-
<h2 className="text-2xl font-bold text-gray-800">Tutorial Verwaltung</h2>
200-
<p className="text-gray-600 mt-1">Erstelle, bearbeite und verwalte deine Tutorials</p>
199+
<h2 className="text-2xl font-bold text-gray-800 dark:text-gray-100">Tutorial Verwaltung</h2>
200+
<p className="text-gray-600 dark:text-gray-300 mt-1">Erstelle, bearbeite und verwalte deine Tutorials</p>
201201
</div>
202202
<div className="flex flex-col sm:flex-row gap-3">
203203
<button
@@ -344,10 +344,10 @@ const AdminDashboard = () => {
344344
<div className="inline-flex items-center justify-center w-16 h-16 bg-gray-100 rounded-full mb-4">
345345
<Terminal className="w-8 h-8 text-gray-400" />
346346
</div>
347-
<h3 className="text-xl font-semibold text-gray-800 mb-2">
347+
<h3 className="text-xl font-semibold text-gray-800 dark:text-gray-100 mb-2">
348348
Noch keine Tutorials vorhanden
349349
</h3>
350-
<p className="text-gray-600 mb-6">
350+
<p className="text-gray-600 dark:text-gray-300 mb-6">
351351
Erstelle dein erstes Tutorial, um loszulegen.
352352
</p>
353353
<button

0 commit comments

Comments
 (0)