feat: LaunchPage redisgned

This commit is contained in:
2025-07-07 05:32:22 +05:00
parent 7eaf7a7610
commit b14de1d15a
6 changed files with 107 additions and 37 deletions

View File

@ -12,6 +12,7 @@ export default function MinecraftBackround() {
height: '100%',
opacity: 0.25,
overflow: 'hidden',
zIndex: -10,
}}
>
<Box
@ -30,15 +31,33 @@ export default function MinecraftBackround() {
>
<img
src={heart}
style={{ width: '20vw', height: '20vw', rotate: '-20deg' }}
draggable={false}
style={{
width: '20vw',
height: '20vw',
rotate: '-20deg',
userSelect: 'none',
}}
/>
<img
src={heart}
style={{ width: '20vw', height: '20vw', paddingBottom: '5vw' }}
draggable={false}
style={{
width: '20vw',
height: '20vw',
paddingBottom: '5vw',
userSelect: 'none',
}}
/>
<img
src={heart}
style={{ width: '20vw', height: '20vw', rotate: '20deg' }}
draggable={false}
style={{
width: '20vw',
height: '20vw',
rotate: '20deg',
userSelect: 'none',
}}
/>
</Box>
<Box
@ -57,15 +76,33 @@ export default function MinecraftBackround() {
>
<img
src={heart}
style={{ width: '20vw', height: '20vw', rotate: '-20deg' }}
draggable={false}
style={{
width: '20vw',
height: '20vw',
rotate: '-20deg',
userSelect: 'none',
}}
/>
<img
src={heart}
style={{ width: '20vw', height: '20vw', paddingBottom: '5vw' }}
draggable={false}
style={{
width: '20vw',
height: '20vw',
paddingBottom: '5vw',
userSelect: 'none',
}}
/>
<img
src={heart}
style={{ width: '20vw', height: '20vw', rotate: '20deg' }}
draggable={false}
style={{
width: '20vw',
height: '20vw',
rotate: '20deg',
userSelect: 'none',
}}
/>
</Box>
</Box>

View File

@ -0,0 +1,22 @@
import { Typography } from '@mui/material';
import { Box } from '@mui/material';
export default function PopaPopa() {
return (
<Box sx={{ display: 'flex' }}>
<Typography variant="h3">POPA</Typography>
<Typography variant="h3">-</Typography>
<Typography
variant="h3"
sx={{
background: '-webkit-linear-gradient(200.96deg, #88BCFF, #FD71FF)',
WebkitBackgroundClip: 'text',
WebkitTextFillColor: 'transparent',
}}
>
POPA
</Typography>
</Box>
);
}