diff --git a/src/App.tsx b/src/App.tsx index a691387c..5fcbe0b8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -43,6 +43,12 @@ const router = createBrowserRouter([ ]); const App = () => { + const isMobile = /Mobi/i.test(window.navigator.userAgent); + if (isMobile) { + alert('PC로 지원해주세요.'); + window.location.href = 'https://makers.sopt.org/recruit'; + } + const sessionRef = useRef(null); const [isLight, setIsLight] = useState(true);