Lovable Prompt Creator - AI Prompt Generator

Generate Optimized Prompts for AI Development Platforms

Transform your web or app idea into comprehensive, optimized prompts for Lovable, Bolt, Replit, v0, and Cursor. Our AI-powered tool helps you create production-ready prompts with features, styling, and technical specifications.

Key Features

Pricing

Free plan: 2 prompts to try the tool

Pro plan: $4.99/month - 20 prompts per month, all platforms

100 Prompts pack: $24.99 - One-time purchase, no expiration

Trusted by 10,000+ Users

Join thousands of developers creating amazing apps with AI-powered prompts.

    Hi! Welcome to LovablePrompts.app
    Lovable Prompts Logo
    Public

    Nd glassmorphism effects

    Cursor
    Enhanced
    Minimalist
    light mode
    19h ago

    Generated Prompt

    PROJECT SETUP
    Initialize a new React project using Create React App with TypeScript. Organize the project structure as follows:
    
    ```
    /real-estate-landing-page
    β”œβ”€β”€ /public
    β”œβ”€β”€ /src
    β”‚   β”œβ”€β”€ /components
    β”‚   β”‚   β”œβ”€β”€ Header.tsx
    β”‚   β”‚   β”œβ”€β”€ Hero.tsx
    β”‚   β”‚   β”œβ”€β”€ PropertyCard.tsx
    β”‚   β”‚   β”œβ”€β”€ VirtualTourPreview.tsx
    β”‚   β”‚   β”œβ”€β”€ FeaturedListings.tsx
    β”‚   β”‚   β”œβ”€β”€ AgentProfile.tsx
    β”‚   β”‚   β”œβ”€β”€ ContactForm.tsx
    β”‚   β”œβ”€β”€ /styles
    β”‚   β”‚   β”œβ”€β”€ index.css
    β”‚   β”œβ”€β”€ App.tsx
    β”‚   β”œβ”€β”€ index.tsx
    ```
    
    Install Tailwind CSS and shadcn/ui for styling. Ensure your Tailwind setup is configured to work with your React app properly.
    
    DESIGN REQUIREMENTS
    - Visual Style: minimalist - Clean, simple design with plenty of white space, minimal color palette, and focus on typography
    - Color Mode: Light theme with dark text on light backgrounds
    - Primary Color: #1978E5 (accent for buttons, links, highlights)
    - Typography: Use Inter from Google Fonts for headings, Inter for body text and UI elements
    - Border Radius: 8px (moderately rounded) for buttons, cards, and inputs
    
    CORE COMPONENTS
    1. **Header**: Navigation bar with links to sections of the landing page.
    2. **Hero**: Main introduction with background image and CTA button.
    3. **PropertyCard**: Displays individual property details with glassmorphism effect.
    4. **VirtualTourPreview**: Section showing snippets of virtual tours.
    5. **FeaturedListings**: Grid layout for showcasing top properties.
    6. **AgentProfile**: Displays agent images, bios, and contact info.
    7. **ContactForm**: Simple form for inquiries or scheduling viewings.
    
    IMPLEMENTATION APPROACH
    1. **Set Up Project**: Use Create React App with TypeScript
       ```bash
       npx create-react-app real-estate-landing-page --template typescript
       cd real-estate-landing-page
       npm install tailwindcss@latest postcss@latest autoprefixer@latest
       npx tailwindcss init -p
       ```
    
    2. **Configure Tailwind**: Update `tailwind.config.js` to include paths to your templates:
       ```javascript
       module.exports = {
         purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
         darkMode: false,
         theme: {
           extend: {},
         },
         variants: {
           extend: {},
         },
         plugins: [],
       }
       ```
    
    3. **Build Layout Components**: Create functional components for the Header, Hero, PropertyCard, VirtualTourPreview, FeaturedListings, AgentProfile, and ContactForm. Ensure each component uses Tailwind CSS for styling.
    
    4. **Design Hero Section**:
       ```typescript
       // Hero.tsx
       const Hero = () => {
         return (
           <section className="h-screen flex items-center justify-center bg-cover bg-center" style={{ backgroundImage: 'url(/path/to/image.jpg)' }}>
             <h1 className="text-5xl font-bold text-white">Find Your Dream Home</h1>
             <button className="mt-5 bg-[#1978E5] rounded-[8px] px-6 py-2 text-white">Explore Listings</button>
           </section>
         );
       };
       ```
    
    5. **Implement Glassmorphism Cards**: Use CSS to create the glassmorphism effect in PropertyCard:
       ```typescript
       // PropertyCard.tsx
       const PropertyCard = ({ property }) => {
         return (
           <div className="bg-white bg-opacity-30 backdrop-blur-md rounded-[8px] p-4">
             <img src={property.image} alt={property.title} />
             <h2 className="text-xl">{property.title}</h2>
             <p>{property.price}</p>
           </div>
         );
       };
       ```
    
    6. **Add Virtual Tour Functionality**: Integrate a video component or interactive element for virtual tours.
    
    7. **Display Featured Listings**: Use CSS Grid to layout featured listings responsively.
    
    8. **Develop Agent Profiles Section**: Create a component to display agents’ images and bios.
    
    9. **Create Contact Form**: Implement validation for form fields and handle submissions.
    
    ERROR HANDLING
    Implement error handling strategies for the contact form to manage input validation and submission errors. Use try-catch blocks for API calls and display user-friendly error messages.
    
    TESTING STRATEGY
    Outline testing approaches using Jest and React Testing Library. Focus on unit tests for each component, ensuring that they render correctly and handle props as expected. Conduct integration tests for form submissions and interactions.
    
    This comprehensive prompt provides a clear path to building a premium real estate landing page using React and TypeScript, aligned with modern design principles.

    Loved by thousands of makers from

    From early prototypes to real products, they started here.

    Lovable
    Uber
    Tiffany & Co
    K Fund
    Fever
    Filmin
    Playtomic
    Lovable
    Uber
    Tiffany & Co
    K Fund
    Fever
    Filmin
    Playtomic
    Lovable
    Uber
    Tiffany & Co
    K Fund
    Fever
    Filmin
    Playtomic
    Civitatis
    Blablacar
    Mercado Libre
    Zomato
    Zurich
    IE
    Civitatis
    Blablacar
    Mercado Libre
    Zomato
    Zurich
    IE
    Civitatis
    Blablacar
    Mercado Libre
    Zomato
    Zurich
    IE
    How it works

    Generate optimized prompts for your vibe coding projects

    1

    Generate prompt

    Enter a brief description of the app you want to build and get an optimized prompt

    2

    Review and use your prompt

    Review (and edit if necessary) the generated prompt, then copy it or open it directly in your chosen platform

    3

    Get inspired with new ideas

    Get AI-generated suggestions to expand your product with features that will surprise your users

    Frequently Asked Questions

    Everything you need to know about creating better prompts for your Lovable projects

    Still have questions?

    Can't find what you're looking for? We're here to help!