feedback(adapt on mobile and pc)

This commit is contained in:
aurinex
2025-07-07 23:58:43 +05:00
parent eb6cc40f22
commit 4f26d6fae0
4 changed files with 379 additions and 80 deletions

15
src/theme/theme.tsx Normal file
View File

@ -0,0 +1,15 @@
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
breakpoints: {
values: {
xs: 0,
sm: 600,
md: 900,
lg: 1200,
xl: 1536,
},
},
});
export default theme;