Files
leon-ai--leon/aurora/preview/index.html
T
2026-07-13 12:44:08 +08:00

32 lines
587 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aurora</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/main.tsx"></script>
</body>
<style>
body {
background-color: #000;
color: #fff;
margin: 32px 0;
font-family: var(--a-font-family);
}
#root {
width: 900px;
margin: 0 auto;
}
h2 {
margin: 24px 0;
font-size: 1.4rem;
font-weight: 600;
}
</style>
</html>