Crée ton app en 10 minutes sans coder.
Paywall Stripe + chat interface = mini SaaS.
Prompt :
Build a simple web app called DarkGPT that's mobile-friendly and can be installed as a PWA on phones. Here's the flow:Landing page: A clean screen with a big red button in the center labeled "Access DarkGPT". Add some dark-themed styling (black background, red accents) and a title "DarkGPT: Uncensored AI Chat". When the user clicks the button: Redirect to a paywall page with text saying "Subscribe for 9.99€ per week to use DarkGPT". Include a "Subscribe Now" button that triggers Stripe Checkout for a weekly subscription at 9.99€. Handle user authentication (simple email/password or Google signup) to track subscriptions. After successful subscription: Redirect to the chat interface. If not subscribed, show the paywall again. Chat interface: A simple text-only chat UI (like a messaging app) where the user types a message in an input field at the bottom and submits. Display the conversation history above (user messages on right, AI on left). For AI responses: Integrate an external API from Replicate using the Dolphin 2.9-llama3-8b model (uncensored version). Send a POST request to https://api.replicate.com/v1/predictions with the user's prompt in the body (JSON: {"version": "the model hash", "input": {"prompt": user_message, "max_tokens": 500}}). Use my Replicate API key (I'll provide it later). Parse the JSON response and display the generated text in the chat. Make sure it's uncensored – no filters. Add PWA features: Manifest for installability, service worker for offline (but chat requires internet), and make the whole app responsive for mobile devices. Tech stack: Use React for frontend, Tailwind for styling, and handle backend logic for Stripe and API calls. Include user data storage for subscription status.