afv-library/samples/webapp-template-app-react-sample-b2x-experimental/force-app/main/default/webapplications/appreactsampleb2x/index.html

50 lines
1.1 KiB
HTML
Raw Normal View History

<!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>