A small React + TypeScript + Tailwind single-page application for the Brainrot programming language docs.
- React + TS: TypeScript for type safety, React for the UI.
- Tailwind: For a modern and responsive UI.
- Brainrot Logo: Showcases the brand with an imported image.
- Node.js v18+ (or similar)
- Yarn or npm
- TypeScript dev dependencies
-
Clone the repo:
git clone https://github.com/Brainrotlang/brainrot-webpage.git cd brainrot-webpage
-
Install dependencies:
yarn install # or npm install
-
(Optional) If you see ESLint or TS parser issues:
yarn add -D typescript @typescript-eslint/parser
yarn start
- Open http://localhost:3000 to view the app in your browser.
yarn build
- Outputs a production-ready build in the
build/
folder.
brainrot-webpage/
├─ public/
│ └─ favicon.ico
├─ src/
│ ├─ App.tsx
│ ├─ index.css
│ ├─ brainrot-logo.png
│ └─ ...other components...
├─ package.json
├─ yarn.lock
└─ tsconfig.json
This project is distributed under the MIT license. See the LICENSE file for more information.