import { useState } from "react" import { Modal } from "antd" import { CrownFilled } from "@ant-design/icons" function Premium({ children, className = "" }) { const [premiumModalOpen, setPremiumModalOpen] = useState(false) const onClick = () => { setPremiumModalOpen(true) } const onClose = (event) => { event.stopPropagation() setPremiumModalOpen(false) } // FIXME: the pricing section is not responsive return (
{children} Buy Pre-order one Time License} style={{ zIndex: 14000, gap: '10px', maxWidth: '80vw', placeItems: "center" }} onCancel={onClose} centered onOk={onClose} footer={null} width={'auto'} open={premiumModalOpen} >
I am Paul, an open-source dev, funding open-source projects by providing custom works. If you find this tool useful and want to support its development, consider buying a one time license.

By buying pre-order license, you get advance features, priority support, early access, upcoming features, and more. more.

Choose your plan

{/* Free Plan */}

$0

Free to use forever, but for added features and to support open-source development, consider buying a lifetime license.


  • Access to web-based editor
  • Commercial use
  • Downloadable UI builder exe for local development
  • Support for PySlide/PyQt
  • Preview live
  • Save and load files
  • Load plugins locally
  • Dark theme
  • Priority support
  • Early access to new features
{/* Paid Plan */}
Limited time offer
Hobby

$129 $29 Forever

Support open-source development 🚀. Plus, get added benefits.


  • Access to web-based editor
  • Downloadable UI builder exe for local development
  • Preview live
  • Save and load files
  • Load plugins locally
  • Dark theme
  • Priority support
  • Early access to new features
  • Support for PySlide/PyQt
  • Commercial use
Buy License
{/* Paid Plan */}
Limited time offer
Commercial

$180 $49 Forever

Support open-source development 🚀. Plus, get added benefits.


  • Access to web-based editor
  • Downloadable UI builder exe for local development
  • Preview live
  • Save and load files
  • Load plugins locally
  • Dark theme
  • Priority support
  • Early access to new features
  • Support for PySlide/PyQt
  • Commercial use
Buy License
) } export default Premium