/kriya.tech

a creative tech company offering services in tech, design, interviews, hiring, etc.

Primary LanguageJavaScript

Welcome to the KriyaTech Repository!

We are a creative tech company offering services in tech, design, interviews, hiring, etc. We are team of 1-10 members, collaborating with each other to create a awesome website for the world!

How to contribute to this repo?

Step 1: Fork this repository

Begin by forking this repository. Click the "Fork" button at the top of this page. This action will create a copy of this repository in your GitHub account.

Screenshot 2023-10-08 170411

Step 2: Clone the repository

Next, clone your forked repository to your local machine. Go to your GitHub account, open the forked repository, click on the "Code" button, and then click the "Copy to clipboard" icon.

image

Open your terminal and run the following command, replacing <link> with the copied url:

git clone <link>

For example:

git clone https://github.com/your-username/kriya.tech.git

Step 3: Create a new branch:

Change to the repository directory on your computer (if you are not already there):

cd kriya-tech

Now, create a branch using the git checkout command:

git checkout -b your-new-branchname

Step 5: Setup the TailwindCSS with Vite

First open the terminal

image

Enter this command to install the required dependencies:

npm install -D tailwindcss postcss autoprefixer --force

Run your build process with npm run dev.

Now click on follow the link to open the local server.

image

image

Step 4: Make necessary changes and commit them

If you run the git status command in your project directory, you'll see there are changes. Add those changes to the branch you created using the git add command:

git add .

This will add all the unstaged files to the staging area.

Now commit those changes:

git commit -m "commit message"

Step 5: Push your changes to Github

Use the git push command to push your changes to Github:

git push origin -u <add-your-branchname>

Step 6: Submit your changes for review

Go to your repository on Github, and you'll see a "Compare & pull request" or "Open Pull request" button. Click on that button.

image

Submit the pull request

image

You will receive a notification email once your changes have been merged.

What's Next?

Congratulations you have succesfully submitted the pull request , now wait for the maintainers to review and merge your PR!

Thank you!