This is a single-page React application for a dance studio. It showcases various dance styles, an image carousel, and contact information.
node.js already installed
started off with
npx create-react-app interests
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
in tailwind.config.js:
module.exports = { content: [ "./src/**/*.{js,jsx,ts,tsx}", ], theme: { extend: {}, }, plugins: [], };
addded @tailwind base; @tailwind components; @tailwind utilities;
to index.css
npm start