A dynamic and customizable resume builder created using modern web development tools like React, TypeScript, and Tailwind CSS. This project is designed to help users create professional resumes effortlessly.
The project is organized as follows:
MadeYourResume/
├── project/
├── src/
│ ├── components/
│ ├── constants/
│ ├── types/
│ │ └── resume.ts
│ ├── utils/
│ ├── App.tsx
│ ├── index.css
│ ├── main.tsx
│ └── vite-env.d.ts
├── .gitignore
├── eslint.config.js
├── index.html
├── package.json
├── package-lock.json
├── postcss.config.js
├── tailwind.config.js
├── tsconfig.json
├── vite.config.ts
├── LICENSE
└── README.md
We welcome contributions to improve this project! Follow the steps below to get started:
Click the Fork button at the top-right corner of this page to create a copy of this repository in your GitHub account.
Clone the forked repository to your local machine:
git clone https://github.com/Sangram03/MadeYourResume.git
Navigate to the project directory and install dependencies:
cd MadeYourResume
npm install
Create a new branch to work on your feature or bug fix:
git checkout -b feature-name
Make your changes in the appropriate files. Ensure you follow the existing coding style and include comments where necessary.
Run the application to test your changes:
npm run dev
Stage and commit your changes:
git add .
git commit -m "Description of your changes"
Push your branch to your forked repository:
git push origin feature-name
Go to the original repository and click New Pull Request. Provide a detailed description of your changes and submit the pull request.