- 替换粒子动画为预加载背景图片,提升加载性能 - 添加桌面端无奖励结算界面显示玩家选择和开奖结果 - 实现消息广播组件的动画效果和状态管理 - 添加代码审查报告文档 - 更新GitNexus索引统计信息 - 调整加载界面布局和样式优化
46 lines
1.5 KiB
HTML
46 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link
|
|
rel="preload"
|
|
as="image"
|
|
href="/loading/pc-loading-bg.webp"
|
|
media="(min-width: 769px)"
|
|
fetchpriority="high"
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
as="image"
|
|
href="/loading/mobile-loading-bg.webp"
|
|
media="(max-width: 768px)"
|
|
fetchpriority="high"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta
|
|
name="description"
|
|
content="36-character-flower real-time game portal built with React, TanStack Router, TanStack Query, and Zustand."
|
|
/>
|
|
<meta name="robots" content="index,follow" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:site_name" content="36字花" />
|
|
<meta property="og:title" content="36字花" />
|
|
<meta
|
|
property="og:description"
|
|
content="36-character-flower real-time game portal built with React, TanStack Router, TanStack Query, and Zustand."
|
|
/>
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:title" content="36字花" />
|
|
<meta
|
|
name="twitter:description"
|
|
content="36-character-flower real-time game portal built with React, TanStack Router, TanStack Query, and Zustand."
|
|
/>
|
|
<title>36字花</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|