Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# Dance Studio Website
This is a single-page React application for a dance studio. It showcases various dance styles, an image carousel, and contact information.
## Prerequisites
node.js already installed
## Installation
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