- components: add FavButton for player favoriting - store: create useFavPlayerStore for managing favorites - pages: add FavePlayersPage for displaying favorites - components: add MenuButtons for navigation controls - ui: update App and ProfilePage for new features - meta: update index.html title to "我的开球网"
16 lines
505 B
HTML
16 lines
505 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
|
|
|
|
<link rel="icon" type="image/svg+xml" href="./logo.jpg" />
|
|
<title>我的开球网</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="./frontend.tsx"></script>
|
|
<script defer src="https://umami.ksr.la/script.js" data-website-id="37f547c9-a21b-4e91-83f3-f7f1198a8793"></script>
|
|
</body>
|
|
</html>
|