chore: change the font to montserrat

This commit is contained in:
Rodolfo Ruiz
2025-06-09 20:42:57 -06:00
parent 49a012dbeb
commit d6468b533e
4 changed files with 41 additions and 20 deletions

15
src/theme.jsx Normal file
View File

@@ -0,0 +1,15 @@
// src/theme.js
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
typography: {
fontFamily: 'Montserrat, sans-serif',
},
palette: {
text: {
primary: '#26201A',
},
},
});
export default theme;