feat(settings): add admin settings UI and Navbar link

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-05-16 20:10:41 +02:00
parent 364b1cd7e0
commit 078dc25b87
3 changed files with 73 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { test, expect } from '@playwright/test';
test('admin can view settings page', async ({ page }) => {
await page.goto('http://localhost:5173/settings');
await expect(page.locator('text=Settings')).toBeVisible();
});