/** * src/components/MobileWarning/index.jsx * Show warning when user opens the website on mobile browser, * * created by Lynchee on 7/16/23 */ import React from 'react'; import './style.css' const MobileWarning = () => (

This website is best viewed on a desktop browser.

Please switch to a desktop for the best experience.

Mobile version is coming soon!

If you have an iOS device, you can test our iOS beta app.

); export default MobileWarning;