landing/web/index.html
2023-12-01 22:43:46 +07:00

54 lines
No EOL
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<!--
__ _______ __________ ____ ____
/ |/ / __ \/ ____/ __ \/ __ \/ _/
/ /|_/ / / / / __/ / /_/ / / / // /
/ / / / /_/ / /___/ ____/ /_/ // /
/_/ /_/\____/_____/_/ \____/___/
-->
<head>
<base href="$FLUTTER_BASE_HREF">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="Easily Buy Sneakers anywhere, anytime.">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="nekoya_landing">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<link rel="icon" type="image/png" href="favicon.png"/>
<title>Nekoya</title>
<link rel="manifest" href="manifest.json">
<script>
const serviceWorkerVersion = null;
</script>
<script src="flutter.js" defer></script>
</head>
<body>
<script>
window.addEventListener('load', function(ev) {
_flutter.loader.loadEntrypoint({
serviceWorker: {
serviceWorkerVersion: serviceWorkerVersion,
},
onEntrypointLoaded: function(engineInitializer) {
engineInitializer.initializeEngine().then(function(appRunner) {
appRunner.runApp();
});
}
});
});
</script>
</body>
</html>