2 Commits

Author SHA1 Message Date
d62f51c48e fix(deps): update dependency @nextui-org/react to v2 2023-11-06 12:01:59 +00:00
6b5b8bb54f add deprecation notice
All checks were successful
Publish / docker (push) Successful in 1m59s
2023-11-05 23:17:44 +00:00
3 changed files with 2260 additions and 393 deletions

View File

@ -13,7 +13,7 @@
"@beam-australia/react-env": "^3.1.1", "@beam-australia/react-env": "^3.1.1",
"@emotion/cache": "^11.11.0", "@emotion/cache": "^11.11.0",
"@emotion/server": "^11.11.0", "@emotion/server": "^11.11.0",
"@nextui-org/react": "1.0.0-beta.10", "@nextui-org/react": "2.2.4",
"@typescript-eslint/eslint-plugin": "^6.7.5", "@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5", "@typescript-eslint/parser": "^6.7.5",
"axios": "^1.5.1", "axios": "^1.5.1",

2518
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -63,6 +63,21 @@ export default function Overlay(props) {
<SongInfo /> <SongInfo />
<ScoreStats /> <ScoreStats />
<CutStats /> <CutStats />
<p
style={{
fontSize: 50,
position: "absolute",
top: 0,
right: 0,
paddingRight: "10px",
}}
>
This overlay is deprecated use:{" "}
<a href="https://ssr.fascinated.cc/overlay/builder">
https://ssr.fascinated.cc/overlay/builder
</a>
</p>
</div> </div>
); );
} }