From aa78eab0bf4206c02bbd4372fb1b4614ec27c3eb Mon Sep 17 00:00:00 2001 From: mawkone Date: Fri, 29 May 2026 15:56:59 -0700 Subject: [PATCH] feat(auth): add standalone /auth landing page for desktop sso --- src/index.ts | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/src/index.ts b/src/index.ts index be22606..c13fcc3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -104,6 +104,92 @@ app.get('/', (c) => { }); }); +// Standalone Auth Landing Page for Desktop SSO redirection +app.get('/auth', (c) => { + return c.html(` + + + + + + Sign In to VibnCode + + + +
+ +

Sign In to VibnCode

+

Connect your desktop client securely to your workspace cloud containers.

+ Sign In with GitHub + Sign In with Google +
+ + + `); +}); + // API routes app.route('/api/auth', authRoutes); app.route('/api/marketplace', marketplaceRoutes);