This guide takes you from zero to a fully running local development server for Soumyajit Landing Pages. By the end you will have the React app hot-reloading in your browser atDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/luislopez-stack/landing-pages/llms.txt
Use this file to discover all available pages before exploring further.
http://localhost:3000, ready for you to customise the content, colors, and assets to match your own brand.
Fork or clone the repository
Clone the project from GitHub to your local machine, then move into the new directory:If you plan to deploy your own version, fork the repository on GitHub first and clone your fork’s URL instead — that way you can push changes back to your own account.
Install dependencies
Install all required npm packages. Choose your preferred package manager:This pulls in React, React Router, React-Bootstrap, react-tsparticles, typewriter-effect, react-pdf, and all other dependencies listed in
package.json. The install typically completes in under a minute.Start the development server
Launch the app in development mode:Create React App compiles the project and automatically opens
http://localhost:3000 in your default browser. The server watches every file in src/ — any change you save triggers an instant hot-reload so you see updates without refreshing manually.Build for production
When you are ready to deploy, generate an optimised production build:The compiled output lands in the
build/ folder at the project root. All JavaScript and CSS is minified, tree-shaken, and hashed for long-term caching. Upload the contents of build/ to any static host — Vercel, Netlify, GitHub Pages, or an S3 bucket.Available scripts
| Script | Description |
|---|---|
npm start | Starts the development server on port 3000 with hot-reloading |
npm run build | Creates an optimised production build in the build/ directory |
npm test | Runs the test suite in interactive watch mode using Jest |
npm run eject | Ejects from Create React App, exposing all config files (irreversible) |