Skip to content

Commit 22612ec

Browse files
committed
Add README, LICENSE, robots.txt, and sitemap.xml
1 parent 103230e commit 22612ec

4 files changed

Lines changed: 92 additions & 0 deletions

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Adwait Keshari
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Adwait's Portfolio Website
2+
3+
A modern, responsive portfolio website showcasing my projects, skills, and professional experience.
4+
5+
## 🌟 Features
6+
7+
- **Modern Design**: Clean and professional layout with smooth animations
8+
- **Responsive**: Fully responsive design that works on all devices
9+
- **Interactive**: Dynamic elements and smooth transitions
10+
- **Performance Optimized**: Fast loading and optimized assets
11+
- **SEO Ready**: Proper meta tags and semantic HTML
12+
13+
## 🛠️ Technologies Used
14+
15+
- HTML5
16+
- CSS3 (Custom animations and transitions)
17+
- JavaScript (GSAP for animations)
18+
- Git/GitHub
19+
- GitHub Pages
20+
21+
## 🚀 Quick Start
22+
23+
1. Clone the repository:
24+
```bash
25+
git clone https://github.com/Adwaitbytes/adwaitbytes.github.io.git
26+
```
27+
28+
2. Open `index.html` in your browser
29+
30+
## 📂 Project Structure
31+
32+
```
33+
├── index.html # Main HTML file
34+
├── styles.css # CSS styles and animations
35+
├── script.js # JavaScript functionality
36+
├── LICENSE # MIT license
37+
└── README.md # Project documentation
38+
```
39+
40+
## 🔧 Development
41+
42+
To make changes:
43+
44+
1. Fork the repository
45+
2. Create a new branch (`git checkout -b feature/improvement`)
46+
3. Make changes
47+
4. Commit (`git commit -am 'Add new feature'`)
48+
5. Push (`git push origin feature/improvement`)
49+
6. Create a Pull Request
50+
51+
## 📱 Contact
52+
53+
- Website: [adwaitbytes.github.io](https://adwaitbytes.github.io)
54+
- Email: adwaitkeshari289@gmail.com
55+
- GitHub: [@Adwaitbytes](https://github.com/Adwaitbytes)
56+
57+
## 📄 License
58+
59+
This project is open source and available under the [MIT License](LICENSE).

robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
Allow: /
3+
Sitemap: https://adwaitbytes.github.io/sitemap.xml

sitemap.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://adwaitbytes.github.io/</loc>
5+
<lastmod>2024-12-27</lastmod>
6+
<changefreq>monthly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
</urlset>

0 commit comments

Comments
 (0)