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);