the statusphere demo reworked into a vite/react app in a monorepo

Add account creation cta

+10
+4
src/pages/login.ts
··· 27 27 <button type="submit">Log in</button> 28 28 ${error ? html`<p>Error: <i>${error}</i></p>` : undefined} 29 29 </form> 30 + <div class="signup-cta"> 31 + Don't have an account on the Atmosphere? 32 + <a href="https://bsky.app">Sign up for Bluesky</a> to create one now! 33 + </div> 30 34 </div> 31 35 </div>` 32 36 }
+6
src/public/styles.css
··· 202 202 203 203 .status-line .author:hover { 204 204 text-decoration: underline; 205 + } 206 + 207 + .signup-cta { 208 + text-align: center; 209 + text-wrap: balance; 210 + margin-top: 1rem; 205 211 }