add basic mobile responsive layout

This commit is contained in:
jeffvli
2025-11-19 19:23:44 -08:00
parent 485fe8085c
commit c763824803
26 changed files with 1930 additions and 40 deletions
+6
View File
@@ -0,0 +1,6 @@
import { useMediaQuery } from '@mantine/hooks';
export const useIsMobile = () => {
const isMobile = useMediaQuery('(max-width: 768px)');
return isMobile;
};