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: simplify beta.astro structure and enhance iframe integration

- Remove unnecessary meta tags and streamline HTML for better readability.
- Update iframe attributes for improved performance and accessibility.
- Introduce a script for embedding Tally widget, enhancing functionality.

+6 -41
+6 -41
src/pages/beta.astro
··· 5 5 <!doctype html> 6 6 <html lang="en"> 7 7 <head> 8 - <meta charset="utf-8" /> 9 - <meta 10 - name="viewport" 11 - content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" 12 - /> 8 + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> 13 9 <title>Android Beta sign up</title> 14 - <style> 15 - :root { 16 - color-scheme: dark; 17 - } 18 - 19 - html, 20 - body { 21 - margin: 0; 22 - width: 100%; 23 - height: 100%; 24 - min-height: 100dvh; 25 - overflow: hidden; 26 - background: #000; 27 - } 28 - 29 - body { 30 - position: relative; 31 - } 32 - 33 - iframe { 34 - position: absolute; 35 - inset: 0; 36 - display: block; 37 - width: 100%; 38 - height: 100%; 39 - min-height: 100dvh; 40 - border: 0; 41 - background: #000; 42 - } 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; } 43 14 </style> 44 15 </head> 45 16 <body> 46 - <iframe 47 - src="https://tally.so/r/nWx7zQ?transparentBackground=1" 48 - title="Android Beta sign up" 49 - loading="eager" 50 - referrerpolicy="no-referrer-when-downgrade" 51 - allow="clipboard-write" 52 - ></iframe> 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> 53 18 </body> 54 19 </html>