ujjawaltyagii / Razorpay-Clone

Created RazorPay website using Tailwind CSS

Home Page:https://razorpay-tw.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Razorpay-Clone

Razorpay is the only payments solution in India that allows businesses to accept, process and disburse payments with its product suite and,

Razorpay aims to revolutionize money management for online businesses by providing clean, developer-friendly APIs and hassle-free integration.

-- Created Responsive RazorPay website purely using Tailwind CSS and additional languages used are : HTML and JavaScript

Want to contribute ?

  1. The "sidemenu" toggle is under development so you can contribute to it.(In Nav section)
  2. Adding Dark Mode and Light Mode option with a toggle button.

New to Tailwind ? or Don't know how to contribute ?

Follow these steps to contribute :

  1. Fork this repository.

  2. Clone it to your computer git clone https://github.com/your-username/Razorpay-Clone.git

  3. Navigate to the project folder cd Razorpay-Clone

  4. (to run commands "nodejs" and "Tailwind" setup should be already installed) If not then,

    (IGNORE step 5 if already installed)

  5. first download Nodejs then -> create a folder and open it in VScode or any code editor

-> now open terminal in Vscode and type npm init

-> in package name : tailwind_demo

-> in description : Tailwind

-> now just "enter" till terminal shows

Untitled Now in terminal type following commands (continuation of step 5) npm i vite

npm install -D tailwindcss postcss autoprefixer

npx tailwindcss init

-> now create a file in same(parent folder) with name: postcss.config.js

-> now paste below content in this postcss.config.js file:

 module.exports = {
  plugins: {
  tailwindcss: {},
    autoprefixer: {},
  }
} 

-> now in file tailwind.config.js (delete all previous data and paste :

/** @type {import('tailwindcss').Config} */

module.exports = { 
  content: ["*"], 
  theme: { <br>
    extend: {}, 
  }, <br>
  plugins: [],
}

-> now open file package.json -> in "scripts" in new line add

     "start": "vite"

-> now create a file main.css -> now add following code in main.css

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

-> now create a file index.html and link css file in HEAD Tag

e.g:

 <link rel="stylesheet" href="./main.css">

-> now in Terminal type : npm start

you will see this : img

-> now CLICK on this https link to start live server

  1. Create a new branch using your GitHub Username
git checkout -b [name_of_your_new_branch]
  1. Add your changes
git add .
  1. Add your commits
git commit -m "Your Changes"
  1. Set upstream command
git remote add upstream https://github.com/ujjawaltyagii/Razorpay-Clone.git
  1. Push your commits
git push -u origin [Your-branch-name]
  1. Create a PR

  2. Wait for merge

About

Created RazorPay website using Tailwind CSS

https://razorpay-tw.netlify.app/

License:MIT License


Languages

Language:HTML 99.3%Language:JavaScript 0.7%Language:CSS 0.1%