Fake robux site
Generated Prompt
PROJECT SETUP
To create a fake robux site, the project structure will be organized as follows:
```
/robux-site
β
βββ /public
β βββ index.html // Main HTML file
β βββ /assets // Images, icons, and other static assets
β
βββ /src
β βββ /components // Reusable components (Buttons, Cards, etc.)
β βββ /pages // Different pages (Home, About, Contact)
β βββ /styles // CSS or styled components
β βββ App.js // Main application component
β βββ index.js // Entry point for the application
β βββ utils.js // Utility functions
β
βββ /tests // Test files
β βββ App.test.js // Test cases for the main application
β
βββ package.json // Project metadata and dependencies
```
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**: Contains the site logo and navigation links.
2. **Hero Section**: The main introduction area with a catchy headline and call-to-action button.
3. **Features Section**: Displays key features or benefits of the site.
4. **Testimonials Section**: User feedback or fake testimonials to enhance credibility.
5. **Footer**: Contains links to privacy policy, terms of service, and social media.
IMPLEMENTATION APPROACH
1. **Setup Project**: Initialize the project with `create-react-app` or your preferred framework.
2. **Create Components**:
- **Button Component**:
```javascript
const Button = ({ children, onClick }) => {
return (
<button
style={{
backgroundColor: '#1978E5',
borderRadius: '8px',
color: '#ffffff',
padding: '10px 20px',
}}
onClick={onClick}
>
{children}
</button>
);
};
```
- **Header Component**:
```javascript
const Header = () => {
return (
<header>
<h1 style={{ fontFamily: 'Inter' }}>Fake Robux Site</h1>
<nav>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#testimonials">Testimonials</a></li>
</ul>
</nav>
</header>
);
};
```
3. **Implement Routing**: Use React Router to navigate between different sections/pages.
4. **Styling**: Create a CSS file in the `/styles` directory to maintain styles globally.
ARCHITECTURE CONSIDERATIONS
- Utilize functional components and hooks for state management.
- Follow a component-based architecture to ensure reusability.
- Consider using React Context for global state or theming if necessary.
ERROR HANDLING
- Implement error boundaries for React components to catch rendering errors.
- Validate user inputs and provide feedback.
- Use try-catch blocks for async operations to handle potential errors.
TESTING STRATEGY
- Write unit tests for each component using Jest and React Testing Library.
- Ensure coverage for critical functions and user interactions.
- Regularly run tests during development to catch issues early.
Please provide detailed, production-ready code that follows best practices for Cursor.Loved by thousands of makers from
From early prototypes to real products, they started here.







































Generate optimized prompts for your vibe coding projects
Generate prompt
Enter a brief description of the app you want to build and get an optimized prompt
Review and use your prompt
Review (and edit if necessary) the generated prompt, then copy it or open it directly in your chosen platform
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!
