Skip to content

Commit ca7f232

Browse files
authored
Update README.md
1 parent 0b798fb commit ca7f232

File tree

1 file changed

+66
-49
lines changed

1 file changed

+66
-49
lines changed

README.md

+66-49
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,87 @@
1-
# Getting Started with Create React App
1+
# Online CV
22

3-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
3+
**Online CV** is a web-based platform that allows users to create and manage their professional resumes online. This project was developed as a modern solution to showcase an individual's skills, experience, and achievements in a visually appealing and easily accessible format. The application supports dynamic content, is responsive, and can be easily customized to fit various professional profiles.
44

5-
## Available Scripts
5+
## Table of Contents
66

7-
In the project directory, you can run:
7+
- [Project Overview](#project-overview)
8+
- [Features](#features)
9+
- [Technologies Used](#technologies-used)
10+
- [Installation](#installation)
11+
- [Usage](#usage)
12+
- [Contributing](#contributing)
13+
- [License](#license)
14+
- [Acknowledgements](#acknowledgements)
815

9-
### `npm start`
16+
## Project Overview
1017

11-
Runs the app in the development mode.\
12-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
18+
The **Online CV** project is designed to help users build an attractive online resume that can be shared with potential employers, colleagues, or clients. It simplifies the process of resume creation by offering an easy-to-use interface with various customization options. This project focuses on delivering a seamless user experience while ensuring the resume remains professional and comprehensive.
1319

14-
The page will reload if you make edits.\
15-
You will also see any lint errors in the console.
20+
## Features
1621

17-
### `npm test`
22+
- **Responsive Design**: The CV is accessible on various devices, including desktops, tablets, and smartphones.
23+
- **Dynamic Content**: Easily update your CV content through a user-friendly interface.
24+
- **Customizable Sections**: Add, remove, or rearrange sections such as Education, Experience, Skills, and more.
25+
- **Printable Version**: Download or print a neatly formatted version of the CV.
26+
- **Shareable Link**: Generate a unique URL to share your CV online.
27+
- **Dark Mode Support**: Toggle between light and dark themes for a more personalized experience.
1828

19-
Launches the test runner in the interactive watch mode.\
20-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
29+
## Technologies Used
2130

22-
### `npm run build`
31+
- **Frontend**: HTML, CSS, JavaScript
32+
- **Framework**: React.js
33+
- **Styling**: Tailwind CSS
34+
- **Build Tool**: Vite
35+
- **Deployment**: Netlify/GitHub Pages (or any static site hosting service)
2336

24-
Builds the app for production to the `build` folder.\
25-
It correctly bundles React in production mode and optimizes the build for the best performance.
37+
## Installation
2638

27-
The build is minified and the filenames include the hashes.\
28-
Your app is ready to be deployed!
39+
To set up the project locally, follow these steps:
2940

30-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
41+
1. **Clone the repository**:
42+
```bash
43+
git clone https://github.com/danikova/online-cv.git
44+
```
45+
2. **Navigate to the project directory**:
46+
```bash
47+
cd online-cv
48+
```
49+
3. **Install the required dependencies**:
50+
```bash
51+
npm install
52+
```
53+
4. **Run the application**:
54+
```bash
55+
npm run dev
56+
```
57+
5. **Access the application**:
58+
- The app should be running at `http://localhost:3000`.
3159

32-
### `npm run eject`
60+
## Usage
3361

34-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
62+
- **Create Sections**: Use the interface to add different sections like Education, Work Experience, and Skills.
63+
- **Edit Content**: Update each section with your relevant details.
64+
- **Customize Layout**: Drag and drop sections to reorder them according to your preference.
65+
- **Preview CV**: View how your CV will look with the live preview feature.
66+
- **Download/Share**: Once satisfied, you can download your CV as a PDF or share it using a unique link.
3567

36-
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
68+
## Contributing
3769

38-
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
70+
Contributions are welcome! If you'd like to contribute to the project, please follow these steps:
3971

40-
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
72+
1. Fork the repository.
73+
2. Create a new branch with a descriptive name (`git checkout -b feature-branch-name`).
74+
3. Make your changes.
75+
4. Commit your changes (`git commit -m 'Add some feature'`).
76+
5. Push to the branch (`git push origin feature-branch-name`).
77+
6. Create a pull request.
4178

42-
## Learn More
79+
## License
4380

44-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
81+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
4582

46-
To learn React, check out the [React documentation](https://reactjs.org/).
83+
## Acknowledgements
4784

48-
### Code Splitting
49-
50-
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51-
52-
### Analyzing the Bundle Size
53-
54-
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55-
56-
### Making a Progressive Web App
57-
58-
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59-
60-
### Advanced Configuration
61-
62-
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63-
64-
### Deployment
65-
66-
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67-
68-
### `npm run build` fails to minify
69-
70-
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
85+
- [React](https://reactjs.org/)
86+
- [Tailwind CSS](https://tailwindcss.com/)
87+
- [Vite](https://vitejs.dev/)

0 commit comments

Comments
 (0)