Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Startup Landing Page Components for React.js

A full-stack Next.js TypeScript template focused on functionality over UI, featuring Zustand, TanStack Query, and ESLint 9 support.
neal-react is a React.js component library for assembling startup landing pages, providing pre-built React components that sit between high-level hosted tools like Launchrock and low-level CSS frameworks like Bootstrap.
neal-react is an open-source collection of React.js components that lets developers build landing pages by composing ready-made sections instead of writing HTML and CSS from scratch. It takes React components as input and produces a complete landing page UI, running in any React project bundled with webpack. The library is maintained by Denny Britz on GitHub, with a companion sample page repository (neal-sample) that demonstrates how to combine the components.
Install the package with npm install --save neal-react, import the components you need, and render them inside a top-level App component. The repo's sample page code (in the neal-sample repository) is the primary reference for composing layouts, and the required external dependencies (jQuery, Bootstrap v4 JavaScript, and Font Awesome) must be included from CDN links listed in the documentation.
Yes. Besides React, you need to load jQuery, Bootstrap v4 JavaScript, and Font Awesome from CDNs. The README provides the exact CDN URLs for these assets.
Styling is based on Bootstrap v4 and can be overwritten by setting the appropriate SASS variables in the css/_variables.scss file, so you can change colors, spacing, and other theme values without editing the components.
It includes Stripe and Typeform integration components, along with GoogleAnalytics and Segment. Because these handle user data externally, you don't need to write a backend to collect payments or leads.
The documentation describes a static deployment approach: run webpack to build assets and then copy the public directory to an AWS S3 bucket with Static Website Hosting enabled. A sample bash script in the repo automates both steps.