Skip to content

Commit 0cdbbad

Browse files
authored
Update README.md
1 parent 19f9954 commit 0cdbbad

File tree

1 file changed

+64
-1
lines changed

1 file changed

+64
-1
lines changed

README.md

Lines changed: 64 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,64 @@
1-
# Web Site
1+
# Portfolio Website
2+
3+
This repository contains the source code for my personal portfolio website, showcasing my projects, skills, and professional experience.
4+
5+
## Built With
6+
7+
- **Vite**: A fast build tool and development server for modern web projects.
8+
- **HTML5**: For structuring the content of the website.
9+
- **CSS3**: For styling and responsive design.
10+
- **JavaScript**: For interactivity and dynamic features.
11+
12+
## Features
13+
14+
- Responsive design for all screen sizes.
15+
- Clean and modern UI to showcase projects and skills.
16+
- Interactive sections for better user engagement.
17+
- Optimized for performance with Vite.
18+
19+
## Installation
20+
21+
Follow these steps to run the project locally:
22+
23+
1. Clone this repository:
24+
```bash
25+
git clone https://github.com/username/portfolio-website.git
26+
```
27+
2. Navigate to the project directory:
28+
```bash
29+
cd portfolio-website
30+
```
31+
3. Install dependencies:
32+
```bash
33+
npm install
34+
```
35+
4. Start the development server:
36+
```bash
37+
npm run dev
38+
```
39+
40+
## Deployment
41+
42+
The project can be built for production using the following command:
43+
```bash
44+
npm run build
45+
```
46+
This will generate optimized files in the `dist` directory, ready for deployment.
47+
48+
## Project Structure
49+
50+
```plaintext
51+
portfolio-website/
52+
├── public/ # Static assets
53+
├── src/
54+
│ ├── assets/ # Images, fonts, etc.
55+
│ ├── components/ # Reusable HTML/JS components
56+
│ ├── css/ # Stylesheets
57+
│ └── main.js # Main JavaScript entry point
58+
├── index.html # Entry HTML file
59+
└── vite.config.js # Vite configuration
60+
```
61+
62+
## License
63+
64+
This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.

0 commit comments

Comments
 (0)