Clone the repository :
git clone https://github.com/[Your_Github_User_Name]/Astrolus_Clone.git
Navigate to the project directory :
cd Astrolus Clone
Install dependencies using your preferred package manager :
npm create vite@latest
or
yarn create vite
or
pnpm create vite
Installing Tailwind CSS :
npm install -D tailwindcss postcss autoprefixer
or
yarn add -D tailwindcss@latest postcss@latest autoprefixer@latest
npx tailwindcss init -p
or
pnpm install -g create-vite
pnpm install tailwindcss postcss autoprefixer
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
bg: '#0F172A',
textH: '#FFFFFF',
textP: '#5B626E',
accent: '#FF7E33',
btn: '#9333EA',
Tdiv: '#293041',
PieI: '#0EA5E9',
chatT: '#A5B4FC',
chatI: '#818CF8',
chatBg: '#151B3C',
locT: '#5EEAD4',
locI: '#2DD4BF',
locBg: '#0F2131',
},
},
},
plugins: [],
};
Installing React Packages
npm i react-icons
npm i react-scroll
or
yarn add react-icons
yarn add react-scroll
or
pnpm install react-icons
pnpm install react-scroll
Start the development server :
npm run dev
or
yarn dev
or
pnpm run vite
Open your browser and visit http://localhost:3000
to see the app running locally.
Feel free to explore and customize the project according to your needs. Happy coding! 😊🚀