26 lines
951 B
HTML
26 lines
951 B
HTML
|
|
<!doctype html>
|
||
|
|
<!-- Capacitor requires a webDir with an index. At runtime the app loads the live Connect UI
|
||
|
|
via server.url in capacitor.config.json, so this is only a launch splash / offline
|
||
|
|
fallback. To ship fully-bundled (offline-launch) later, copy ../server/public here and
|
||
|
|
drop server.url. -->
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
||
|
|
<title>Biz Connect</title>
|
||
|
|
<style>
|
||
|
|
html,body{height:100%;margin:0;background:#0f1830;color:#fff;font-family:system-ui,Segoe UI,Roboto,sans-serif;}
|
||
|
|
.wrap{height:100%;display:grid;place-items:center;text-align:center;padding:2rem;}
|
||
|
|
h1{font-size:1.4rem;margin:.4rem 0;} p{opacity:.7;font-size:.9rem;}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="wrap">
|
||
|
|
<div>
|
||
|
|
<h1>Biz <span style="color:#f5b301">Connect</span></h1>
|
||
|
|
<p>Connecting…</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|