Victor-Grinan-Dev / loopstudio-react

Home Page:https://loopstudio-react.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Landing-page

steps I followed to start this project:

https://tailwindcss.com/docs/guides/create-react-app

1- type in terminal:

npm install -D tailwindcss

2- type in terminal:

npx tailwindcss init

3- add this to the index.css file:

@tailwind base;
@tailwind components;
@tailwind utilities;

4- in the tailwind.config.js write this:

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./src/**/*.{js,jsx,ts,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}

5- finally fix the babel bug by installing:

npm i -D @babel/plugin-proposal-private-property-in-object

About

https://loopstudio-react.vercel.app


Languages

Language:JavaScript 53.6%Language:HTML 41.4%Language:CSS 5.0%