-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
177 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
<!DOCTYPE html> | ||
<html lang="%LANG_ISO_CODE%"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta httpEquiv="X-UA-Compatible" content="IE=edge" /> | ||
<!-- | ||
This viewport works for phones with notches. | ||
It's optimized for gestures by disabling global zoom. | ||
--> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1.00001, viewport-fit=cover" | ||
/> | ||
<!-- Icons --> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png" /> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" /> | ||
<link rel="shortcut icon" href="/favicon.ico" /> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="180x180" | ||
href="/pwa/apple-touch-icon/apple-touch-icon-180.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-640x1136.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-1242x2688.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-828x1792.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-1125x2436.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-1242x2208.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-750x1334.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-2048x2732.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-1668x2388.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-1668x2224.png" | ||
/> | ||
<link | ||
rel="apple-touch-startup-image" | ||
media="screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" | ||
href="/pwa/apple-touch-startup-image/apple-touch-startup-image-1536x2048.png" | ||
/> | ||
|
||
<title>%WEB_TITLE%</title> | ||
<style> | ||
/** | ||
* Extend the react-native-web reset: | ||
* https://github.com/necolas/react-native-web/blob/master/packages/react-native-web/src/exports/StyleSheet/initialRules.js | ||
*/ | ||
html, | ||
body, | ||
#root { | ||
width: 100%; | ||
/* To smooth any scrolling behavior */ | ||
-webkit-overflow-scrolling: touch; | ||
margin: 0px; | ||
padding: 0px; | ||
/* Allows content to fill the viewport and go beyond the bottom */ | ||
min-height: 100%; | ||
} | ||
#root { | ||
flex-shrink: 0; | ||
flex-basis: auto; | ||
flex-grow: 1; | ||
display: flex; | ||
flex: 1; | ||
} | ||
|
||
html { | ||
scroll-behavior: smooth; | ||
/* Prevent text size change on orientation change https://gist.github.com/tfausak/2222823#file-ios-8-web-app-html-L138 */ | ||
-webkit-text-size-adjust: 100%; | ||
height: 100%; | ||
} | ||
|
||
body { | ||
display: flex; | ||
/* Allows you to scroll below the viewport; default value is visible */ | ||
overflow-y: auto; | ||
overscroll-behavior-y: none; | ||
text-rendering: optimizeLegibility; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
-ms-overflow-style: scrollbar; | ||
} | ||
/* Enable for apps that support dark-theme */ | ||
/*@media (prefers-color-scheme: dark) { | ||
body { | ||
background-color: black; | ||
} | ||
}*/ | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<!-- | ||
A generic no script element with a reload button and a message. | ||
Feel free to customize this however you'd like. | ||
--> | ||
<noscript> | ||
<form | ||
action="" | ||
style=" | ||
background-color: #fff; | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
z-index: 9999; | ||
" | ||
> | ||
<div | ||
style=" | ||
font-size: 18px; | ||
font-family: Helvetica, sans-serif; | ||
line-height: 24px; | ||
margin: 10%; | ||
width: 80%; | ||
" | ||
> | ||
<p>Oh no! It looks like JavaScript is not enabled in your browser.</p> | ||
<p style="margin: 20px 0;"> | ||
<button | ||
type="submit" | ||
style=" | ||
background-color: #4630eb; | ||
border-radius: 100px; | ||
border: none; | ||
box-shadow: none; | ||
color: #fff; | ||
cursor: pointer; | ||
font-weight: bold; | ||
line-height: 20px; | ||
padding: 6px 16px; | ||
" | ||
> | ||
Reload | ||
</button> | ||
</p> | ||
</div> | ||
</form> | ||
</noscript> | ||
<!-- The root element for your Expo app. --> | ||
<div id="root"></div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+47.7 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-1125x2436.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+42.5 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-1242x2208.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+56.8 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-1242x2688.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.6 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-1536x2048.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+47.8 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-1668x2224.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+53.2 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-1668x2388.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+69.8 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-2048x2732.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+18.9 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-640x1136.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+23.3 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-750x1334.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+33 KB
web/pwa/apple-touch-startup-image/apple-touch-startup-image-828x1792.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.