2026-03-03 04:24:11 +08:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2026-03-18 11:59:19 +08:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
|
|
|
<link
|
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap"
|
|
|
|
|
rel="stylesheet"
|
|
|
|
|
/>
|
2026-03-03 04:24:11 +08:00
|
|
|
<title>ZENLEASE</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2026-03-24 06:12:03 +08:00
|
|
|
<div id="root">
|
|
|
|
|
<div
|
|
|
|
|
style="
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
background: #f9fafb;
|
|
|
|
|
"
|
|
|
|
|
>
|
|
|
|
|
<svg
|
|
|
|
|
width="40"
|
|
|
|
|
height="40"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
fill="none"
|
|
|
|
|
stroke="#0d9488"
|
|
|
|
|
stroke-width="2"
|
|
|
|
|
stroke-linecap="round"
|
|
|
|
|
stroke-linejoin="round"
|
|
|
|
|
style="animation: spin 1s linear infinite"
|
|
|
|
|
>
|
|
|
|
|
<style>
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
to {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<path d="M21 12a9 9 0 1 1-6.219-8.56" />
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-03-18 11:59:19 +08:00
|
|
|
<script type="module" src="src/app.tsx"></script>
|
2026-03-03 04:24:11 +08:00
|
|
|
</body>
|
|
|
|
|
</html>
|