'use client'; import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; import { TriangleAlert } from "lucide-react"; import { useCallback, useEffect } from "react"; import { dismissMobileUnsupportedSplashScreen } from "@/actions"; import useCaptureEvent from "@/hooks/useCaptureEvent"; export const MobileUnsupportedSplashScreen = () => { const captureEvent = useCaptureEvent(); useEffect(() => { captureEvent('wa_mobile_unsupported_splash_screen_displayed', {}); }, [captureEvent]); const onDismissed = useCallback(() => { dismissMobileUnsupportedSplashScreen(); captureEvent('wa_mobile_unsupported_splash_screen_dismissed', {}); }, [captureEvent]); return (
Sourcebot on mobile is still a work in progress. Please use a desktop computer to get the best experience.