Spaces:
Sleeping
Sleeping
| from shiny import ui | |
| ui = ui.nav_panel( | |
| "Tweet Generator", | |
| ui.input_text("tweet_topic", "Enter Topic (if no blog link)", placeholder="e.g. Best One Piece Cards 2025"), | |
| ui.input_text("shopify_url", "Or paste a Shopify Blog URL (optional)", placeholder="https://yourstore.com/blog/..."), | |
| ui.div( | |
| ui.input_action_button("gen_btn_twt", "Generate Tweet", class_="btn-primary"), | |
| class_="mt-3 mb-2" | |
| ), | |
| ui.output_ui("tweet_draft"), | |
| ui.input_action_button("post_btn_twt", "Post Tweet", class_="btn-success"), | |
| ui.output_text("tweet_post_status") | |
| ) | |