A simple React app to generate customizable Lorem Ipsum text.
- Generate multiple paragraphs of Lorem Ipsum text.
- Configure words per sentence (min/max).
- Configure sentences per paragraph (min/max).
- One-click copy to clipboard with fallback for older browsers.
- Responsive layout and keyboard-friendly inputs.
- Install:
npm install
- Dev server:
npm run dev
(Vite) - Production build:
npm run build
- Preview build:
npm run preview
- Adjust the inputs to your desired ranges and paragraph count.
- Click Generate to render the text.
- Click Copy to copy the generated text to your clipboard.
- Clipboard: Uses
navigator.clipboard
when available; falls back to a safe textarea copy. Clipboard APIs require HTTPS orhttp://localhost
in many browsers. - Assets: Vite serves static assets from
public/
if needed.