I created this character creation screen inspired by the "Bro Visited His Friend" meme, poking fun at the brainrot culture.
Desktop:
This project uses create-react-app.
Start by installing dependencies:
npm install
Boot up a dev server:
npm run start
You should be able to access the application at http://localhost:3001.
This project is built with React.
This project uses CSS Modules. CSS modules are ultimately very similar to vanilla CSS, but the classes are applied in JS. Here's an example:
/* Something.module.css */
.wrapper {
width: 500px;
}/* Something.js */
import styles from "./Something.module.css";
function Something() {
return <div className={styles.wrapper}>I'll be 500px wide!</div>;
}Additionally, a few global styles can be found in src/index.css.
