system-copyright-react/index.html
2025-05-07 14:25:17 +08:00

36 lines
1021 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" id="logo" type="image/svg+xml" href="/miao.svg" />
<!-- <link rel="icon" id="logo" type="image/svg+xml" href="" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.css" />
<title id="page-title">AI喵著</title>
</head>
<!-- <script type="module">
const titleElement = document.getElementById('page-title');
if (titleElement) {
if (THEME === 'blue') {
titleElement.textContent = 'skyblue';
} else if (THEME === 'mzw') {
titleElement.textContent = 'AI喵著';
}
}
const logoElement = document.getElementById('logo');
if (logoElement) {
if (THEME === 'blue') {
logoElement.href = '/vite.svg';
} else if (THEME ==='mzw') {
logoElement.href = '/miao.svg';
}
}
</script> -->
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>