'use client' import { Download, Smartphone, Monitor, Tablet } from 'lucide-react' import { useRedirectIfNotAuth } from '@/utils/auth' export default function DownloadPage() { const userInfo = useRedirectIfNotAuth() if (!userInfo) { return (

Loading...

) } return (

Download pickleglass

Use pickleglass on various platforms

Desktop

Windows, macOS, Linux

Mobile

iOS, Android

Tablet

iPad, Android Tablet

System Requirements

Windows

  • • Windows 10 or later
  • • 4GB RAM
  • • 100MB Storage

macOS

  • • macOS 11.0 or later
  • • 4GB RAM
  • • 100MB Storage

Mobile

  • • iOS 14.0 or later
  • • Android 8.0 or later
  • • 50MB Storage

Having issues? Check out our Help Center.

) }