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) } return (
{children} Fund development. Pre-order one Time License} style={{ zIndex: 14000, gap: '5px', placeItems: "center" }} className="max-xl:tw-max-w-full" onCancel={onClose} centered onOk={onClose} footer={null} width={'auto'} open={premiumModalOpen} >
I am Paul, an indie open-source dev. If you find this tool useful and want to fund and support it's development, consider buying a one time license.

I am working on PYUI builder full time to help you easily build GUI's in python. However as a solo-dev, its super hard to keep working on it without enough funding.

By buying pre-order license, I get to complete this faster and you get discounted price, advance features, priority support, early access, upcoming features, and   more.
Or you could support development by sharing this tool on your socials and you'll be eligible for a  free license.

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
  • Load local UI templates
  • Dark theme
  • Priority support
  • Early access to new features
{/* Paid Plan */}
Pre-order 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
  • Load local UI templates
  • Dark theme
  • Priority support
  • Early access to new features
  • Support for PySlide/PyQt
  • Commercial use
Buy License
{/* Paid Plan */}
Pre-order 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
  • Load local UI templates
  • Dark theme
  • Priority support
  • Early access to new features
  • Support for PySlide/PyQt
  • Commercial use
Buy License
) } export default Premium