add daily reward

This commit is contained in:
2025-12-13 01:35:55 +05:00
parent 5e5f1aaa0a
commit eabc54680f
3 changed files with 304 additions and 2 deletions

View File

@ -24,6 +24,7 @@ import {
import CapeCard from '../components/CapeCard';
import { FullScreenLoader } from '../components/FullScreenLoader';
import { OnlinePlayersPanel } from '../components/OnlinePlayersPanel';
import DailyRewards from '../components/Profile/DailyRewards';
export default function Profile() {
const fileInputRef = useRef<HTMLInputElement>(null);
@ -193,6 +194,7 @@ export default function Profile() {
gap: '100px',
width: '100%',
justifyContent: 'center',
overflowY: 'auto',
}}
>
{loading ? (
@ -451,6 +453,7 @@ export default function Profile() {
</Box>
</Box>
<OnlinePlayersPanel currentUsername={username} />
<DailyRewards />
</Box>
</>
)}