page.tsx20 lines · main
| 1 | /** |
| 2 | * Google OAuth callback blank during Auth product wipe. |
| 3 | */ |
| 4 | export default function GoogleCallbackBlankPage() { |
| 5 | return ( |
| 6 | <main |
| 7 | style={{ |
| 8 | fontFamily: 'ui-monospace, monospace', |
| 9 | padding: '2rem', |
| 10 | maxWidth: 480, |
| 11 | }} |
| 12 | > |
| 13 | <p style={{ fontSize: 14 }}>Auth is not available yet.</p> |
| 14 | <p style={{ marginTop: 8, fontSize: 12, color: '#888' }}> |
| 15 | Sign-in for apps is being set up. You can still use briven.tech dashboard |
| 16 | sign-in. |
| 17 | </p> |
| 18 | </main> |
| 19 | ); |
| 20 | } |