summaryrefslogtreecommitdiff
path: root/client/src/components/Schedule.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-11-25 18:24:08 -0800
committerMichael Hunteman <michael@huntm.net>2024-11-25 18:24:08 -0800
commit2ccc9a5dcd85b616ed006ec88173ecc56e12c20e (patch)
tree872fb92493a3f20f29928fc9efaaf8a8195752d0 /client/src/components/Schedule.tsx
parentea42387252c30a198f8f6251c5960f865e01b229 (diff)
Revert "Blurry load"
This reverts commit fab698d676d43a46b0fd5df592915ca12111dbcb.
Diffstat (limited to 'client/src/components/Schedule.tsx')
-rw-r--r--client/src/components/Schedule.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/client/src/components/Schedule.tsx b/client/src/components/Schedule.tsx
index fc1fb64..64140e4 100644
--- a/client/src/components/Schedule.tsx
+++ b/client/src/components/Schedule.tsx
@@ -6,6 +6,7 @@ import {
useMediaQuery,
useTheme,
} from '@mui/material';
+import divineShepherd from '/divine-shepherd.jpg';
import InsertInvitationIcon from '@mui/icons-material/InsertInvitation';
import { useAppDispatch } from '../hooks';
import { showDialog } from '../slices/uiSlice';
@@ -26,12 +27,9 @@ function Schedule() {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
- backgroundImage: `url(${
- isMobile ? 'none' : '/small/divine-shepherd.webp'
- })`,
+ backgroundImage: `url(${isMobile ? 'none' : divineShepherd})`,
backgroundSize: 'cover',
}}
- data-large="/full/divine-shepherd.jpg"
>
<Paper
elevation={3}