afv-library/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/appreactsampleb2x/index.html
svc-idee-bot 74ba11f45f
chore: sync React B2E (1.112.5) & B2X (1.112.5) samples from npm (#85)
Co-authored-by: Mohan Raj Rajamanickam <1509984+mohanraj-r@users.noreply.github.com>
2026-03-23 15:12:03 -07:00

50 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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"
/>
<title>ZENLEASE</title>
</head>
<body>
<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>
<script type="module" src="src/app.tsx"></script>
</body>
</html>