Files
cfw-autumn/apps/checkout/index.html
2026-03-10 13:26:39 +00:00

19 lines
497 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/autumn-logo-bg.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Checkout</title>
<script>
if (window.location.hostname === 'localhost') {
document.title = 'Checkout (Local)';
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>