source for getorbyt.com getorbyt.com/
client bsky orbytapp app orbyt bluesky getorbyt orbytvideo atproto video
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: update README and page links for Android transition

- Replace references to the beta page with the new Android page in README and sitemap.
- Update download button links in index.astro and app.astro to point to the Android page.
- Remove the beta.astro file as part of the transition to the Android page.

+33 -24
+2 -2
README.md
··· 47 47 2. Video URL from embed (playlist or `video.bsky.app/watch/...`) 48 48 3. HLS.js client-side playback, view transitions 49 49 50 - **Static pages:** `/`, `/about`, `/beta`, `/app`, `/contact`, `/discord`, `/terms`, `/privacy` — all prerendered 50 + **Static pages:** `/`, `/about`, `/android`, `/app`, `/contact`, `/discord`, `/terms`, `/privacy` — all prerendered 51 51 52 52 ## Deployment 53 53 ··· 67 67 │ │ ├── index.astro # Landing 68 68 │ │ ├── @[handle].astro # Profile (SSR) 69 69 │ │ ├── @[handle]/[postId].astro # Post (SSR) 70 - │ │ ├── about.astro, beta.astro, app.astro, ... 70 + │ │ ├── about.astro, android.astro, app.astro, ... 71 71 │ │ └── sitemap.xml.ts 72 72 │ ├── actions/index.ts # loadMorePosts 73 73 │ └── utils/
+28
src/pages/android.astro
··· 1 + --- 2 + export const prerender = true; 3 + --- 4 + 5 + <!doctype html> 6 + <html lang="en"> 7 + <head> 8 + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> 9 + <title>Android Beta sign up</title> 10 + <script is:inline async src="https://tally.so/widgets/embed.js"></script> 11 + <style is:global> 12 + html, body { margin: 0; height: 100%; overflow: hidden; background: #000; } 13 + iframe { position: absolute; top: 0; right: 0; bottom: 0; left: 0; border: 0; background: #000; } 14 + </style> 15 + </head> 16 + <body> 17 + <iframe 18 + data-tally-src="https://tally.so/r/nWx7zQ" 19 + data-tally-theme="dark" 20 + width="100%" 21 + height="100%" 22 + frameborder="0" 23 + marginheight="0" 24 + marginwidth="0" 25 + title="Android Beta sign up" 26 + ></iframe> 27 + </body> 28 + </html>
+1 -1
src/pages/app.astro
··· 221 221 222 222 <div class="buttons"> 223 223 <a href="https://apps.apple.com/us/app/orbyt-video/id6751679299" class="download-button">iOS</a> 224 - <a href="/beta" class="download-button">Android Waitlist</a> 224 + <a href="/Android" class="download-button">Android Waitlist</a> 225 225 </div> 226 226 </div> 227 227 </div>
-19
src/pages/beta.astro
··· 1 - --- 2 - export const prerender = true; 3 - --- 4 - 5 - <!doctype html> 6 - <html lang="en"> 7 - <head> 8 - <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> 9 - <title>Android Beta sign up</title> 10 - <script is:inline async src="https://tally.so/widgets/embed.js"></script> 11 - <style type="text/css"> 12 - html { margin: 0; height: 100%; overflow: hidden; } 13 - iframe { position: absolute; top: 0; right: 0; bottom: 0; left: 0; border: 0; } 14 - </style> 15 - </head> 16 - <body> 17 - <iframe data-tally-src="https://tally.so/r/nWx7zQ" width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0" title="Android Beta sign up"></iframe> 18 - </body> 19 - </html>
+1 -1
src/pages/index.astro
··· 227 227 </div> 228 228 <div class="home-actions"> 229 229 <a href="https://apps.apple.com/us/app/orbyt-video/id6751679299" class="download-button">iOS</a> 230 - <a href="/beta" class="download-button">Android Waitlist</a> 230 + <a href="/Android" class="download-button">Android Waitlist</a> 231 231 </div> 232 232 </main> 233 233
+1 -1
src/pages/sitemap.xml.ts
··· 9 9 const pages = [ 10 10 { path: '/', changefreq: 'weekly', priority: '1.0' }, 11 11 { path: '/app/', changefreq: 'monthly', priority: '0.8' }, 12 - { path: '/beta/', changefreq: 'monthly', priority: '0.8' }, 12 + { path: '/android/', changefreq: 'monthly', priority: '0.8' }, 13 13 { path: '/contact/', changefreq: 'monthly', priority: '0.6' }, 14 14 { path: '/discord/', changefreq: 'monthly', priority: '0.6' }, 15 15 { path: '/privacy/', changefreq: 'yearly', priority: '0.4' },