mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="theme-color">
6 <!--
7 This viewport works for phones with notches.
8 It's optimized for gestures by disabling global zoom.
9 -->
10 <meta
11 name="viewport"
12 content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1.00001, viewport-fit=cover"
13 />
14 <!--
15 Preconnect to essential domains
16 -->
17 <link rel="preconnect" href="https://bsky.social">
18 <link rel="preconnect" href="https://bsky.network">
19 <title>%WEB_TITLE%</title>
20
21 <link rel="preload" as="font" type="font/ttf" href="/static/media/InterVariable.c9f788f6e7ebaec75d7c.ttf">
22 <link rel="preload" as="font" type="font/ttf" href="/static/media/InterVariable-Italic.55d6a3f35e9b605ba6f4.ttf">
23
24 <style>
25 /**
26 * Minimum styles required to render splash.
27 *
28 * ALL OTHER STYLES BELONG IN `src/style.css`
29 *
30 * THIS NEEDS TO BE DUPLICATED IN `bskyweb/templates/base.html`
31 */
32 @font-face {
33 font-family: 'InterVariable';
34 src: url(/static/media/InterVariable.c9f788f6e7ebaec75d7c.ttf) format('truetype');
35 font-weight: 300 1000;
36 font-style: normal;
37 font-display: swap;
38 }
39 @font-face {
40 font-family: 'InterVariableItalic';
41 src: url(/static/media/InterVariable-Italic.55d6a3f35e9b605ba6f4.ttf) format('truetype');
42 font-weight: 300 1000;
43 font-style: italic;
44 font-display: swap;
45 }
46 html {
47 background-color: white;
48 scrollbar-gutter: stable both-edges;
49 }
50 @media (prefers-color-scheme: dark) {
51 html {
52 background-color: black;
53 }
54 }
55 html,
56 body {
57 margin: 0px;
58 padding: 0px;
59 font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Liberation Sans', Helvetica, Arial, sans-serif;
60 text-rendering: optimizeLegibility;
61 /* Platform-specific reset */
62 -webkit-overflow-scrolling: touch;
63 -webkit-text-size-adjust: 100%;
64 -webkit-font-smoothing: antialiased;
65 -moz-osx-font-smoothing: grayscale;
66 -ms-overflow-style: scrollbar;
67 font-synthesis-weight: none;
68 }
69 html,
70 body,
71 #root {
72 display: flex;
73 flex: 1 0 auto;
74 min-height: 100%;
75 width: 100%;
76 }
77 #splash {
78 position: fixed;
79 width: 100px;
80 left: 50%;
81 top: 50%;
82 transform: translateX(-50%) translateY(-50%) translateY(-50px);
83 }
84 /* We need this style to prevent web dropdowns from shifting the display when opening */
85 body {
86 width: 100%;
87 }
88 </style>
89 </head>
90
91 <body>
92 <!--
93 A generic no script element with a reload button and a message.
94 Feel free to customize this however you'd like.
95 -->
96 <noscript>
97 <form
98 action=""
99 style="
100 background-color: #fff;
101 position: fixed;
102 top: 0;
103 left: 0;
104 right: 0;
105 bottom: 0;
106 z-index: 9999;
107 "
108 >
109 <div
110 style="
111 font-size: 18px;
112 font-family: Helvetica, sans-serif;
113 line-height: 24px;
114 margin: 10%;
115 width: 80%;
116 "
117 >
118 <p lang="en">Oh no! It looks like JavaScript is not enabled in your browser.</p>
119 <p lang="en" style="margin: 20px 0;">
120 <button
121 type="submit"
122 style="
123 background-color: #4630eb;
124 border-radius: 100px;
125 border: none;
126 box-shadow: none;
127 color: #fff;
128 cursor: pointer;
129 font-weight: bold;
130 line-height: 20px;
131 padding: 6px 16px;
132 "
133 >
134 Reload
135 </button>
136 </p>
137 </div>
138 </form>
139 </noscript>
140
141 <!-- The root element for your Expo app. -->
142 <div id="root">
143 <div id="splash">
144 <!-- Bluesky SVG -->
145 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 360 320"><path fill="#0085ff" d="M180 142c-16.3-31.7-60.7-90.8-102-120C38.5-5.9 23.4-1 13.5 3.4 2.1 8.6 0 26.2 0 36.5c0 10.4 5.7 84.8 9.4 97.2 12.2 41 55.7 55 95.7 50.5-58.7 8.6-110.8 30-42.4 106.1 75.1 77.9 103-16.7 117.3-64.6 14.3 48 30.8 139 116 64.6 64-64.6 17.6-97.5-41.1-106.1 40 4.4 83.5-9.5 95.7-50.5 3.7-12.4 9.4-86.8 9.4-97.2 0-10.3-2-27.9-13.5-33C336.5-1 321.5-6 282 22c-41.3 29.2-85.7 88.3-102 120Z"/></svg>
146 </div>
147 </div>
148 </body>
149</html>