deps-upgrade(marketplace): ⬆️ Update React, UI libraries, and other frontend dependencies to latest stable versions

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-06 04:00:43 -08:00
parent 563cba52b1
commit aea9bea54a
3 changed files with 17 additions and 1 deletions

View file

@ -95,7 +95,7 @@
"@lilith/ui-zname": "^1.2.3",
"@lilith/vite-version-plugin": "*",
"@lilith/websocket-client": "^1.0.0",
"@lilithftw/vibecheck-core": "file:/var/home/lilith/Code/@applications/vibecheck/packages/core",
"@lilithftw/vibecheck-react": "0.1.0-dev.1770379044",
"@mantine/core": "^7.17.6",
"@mantine/hooks": "^7.17.6",
"@tabler/icons-react": "^3.36.1",

View file

@ -102,6 +102,12 @@ const ForgotPasswordPage = lazy(() => import('@features/auth/pages/ForgotPasswor
const RegisterPage = lazy(() => import('@features/auth/pages/RegisterPage'));
const AudienceRegisterPage = lazy(() => import('@features/auth/pages/AudienceRegisterPage'));
// ============================================
// Demo Pages
// ============================================
const VibeCheckDemoPage = lazy(() => import('@features/vibe-check-demo/pages/VibeCheckDemoPage'));
// ============================================
// Invitations
// ============================================
@ -217,6 +223,9 @@ export const GuestRoutes = () => {
{/* Generic registration (dual-role selection for undecided users) */}
<Route path="/register" element={<RegisterPage />} />
{/* Demo Pages */}
<Route path="/demo/vibe-check" element={<VibeCheckDemoPage />} />
{/* Invitation landing (public) */}
<Route path="/invite/:type/:token" element={<InvitationLandingPage />} />

View file

@ -0,0 +1,7 @@
/**
* VibeCheck Demo Feature
*
* Demo page for testing VibeCheck liveness detection functionality.
*/
export { VibeCheckDemoPage } from './pages/VibeCheckDemoPage';