Skip to content

Commit 0c6bcd8

Browse files
committed
2 parents 281a7b2 + c615a00 commit 0c6bcd8

1 file changed

Lines changed: 261 additions & 0 deletions

File tree

โ€ŽREADME.mdโ€Ž

Lines changed: 261 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,261 @@
1+
# ๐Ÿš€ Gustavo Liendo - Full Stack Developer Portfolio
2+
3+
[![Portfolio](https://img.shields.io/badge/Portfolio-Live-blue?style=for-the-badge)](https://g-code7.github.io)
4+
[![LinkedIn](https://img.shields.io/badge/LinkedIn-Connect-0077B5?style=for-the-badge&logo=linkedin)](https://www.linkedin.com/in/gustavo-liendo-b5b668111/)
5+
[![GitHub](https://img.shields.io/badge/GitHub-Follow-181717?style=for-the-badge&logo=github)](https://github.com/G-code7)
6+
7+
> A modern, responsive, and emotionally engaging portfolio website showcasing 5+ years of full-stack development expertise.
8+
9+
![Portfolio Preview](https://via.placeholder.com/1200x600/0a0e27/3b82f6?text=Portfolio+Preview)
10+
11+
## โœจ Features
12+
13+
### ๐ŸŽจ **Visual Excellence**
14+
- **Modern Dark Theme** with vibrant color accents (Blue, Purple, Pink)
15+
- **Smooth Animations** powered by Anime.js and AOS
16+
- **Custom Cursor** with interactive hover effects
17+
- **3D Card Effects** with tilt interactions
18+
- **Gradient Meshes** for stunning background visuals
19+
- **Loading Screen** with progress bar animation
20+
21+
### ๐Ÿ“ฑ **Responsive Design**
22+
- Fully responsive across all devices (Desktop, Tablet, Mobile)
23+
- Mobile-first approach
24+
- Optimized for performance and accessibility
25+
- Cross-browser compatible
26+
27+
### ๐ŸŽฏ **Interactive Elements**
28+
- **Scroll Progress Bar** showing page navigation
29+
- **Parallax Effects** on hero section
30+
- **Smooth Scrolling** navigation
31+
- **Counter Animations** for statistics
32+
- **Hover Effects** on cards and buttons
33+
- **Mobile Navigation Menu** with toggle
34+
35+
### ๐Ÿ“ **Sections**
36+
37+
1. **Hero Section**
38+
- Eye-catching introduction with animated text
39+
- Live statistics (Years of Experience, Projects, Client Satisfaction)
40+
- Code window simulation showing React component
41+
- Dual CTA buttons (View Work & Contact)
42+
43+
2. **Story Section**
44+
- Timeline-based journey narrative
45+
- Personal philosophy cards
46+
- Inspirational quotes
47+
- Achievement badges
48+
49+
3. **Expertise Section**
50+
- 4 main skill categories with visual cards:
51+
- Front-End & Design
52+
- Back-End & Databases
53+
- DevOps & Cloud
54+
- CMS & E-commerce
55+
- Technology tags with hover effects
56+
- Skill meters with animated progress bars
57+
- Fun statistics (Lines of Code, Coffee Cups, etc.)
58+
59+
4. **Work Section**
60+
- Featured project showcase (SaaS Architecture)
61+
- Client project grid:
62+
- 4Geeks Academy
63+
- Avanti Store
64+
- Carbon Activated
65+
- Cree Studio
66+
- Panatoner
67+
- Project cards with overlay effects
68+
- Technology badges
69+
- Direct links to live sites and GitHub repos
70+
71+
5. **Contact Section**
72+
- Functional contact form (Formspree integration ready)
73+
- Contact information cards (Email, LinkedIn, GitHub)
74+
- Form validation
75+
- Success message animation
76+
- Alternative: Email fallback (mailto)
77+
78+
6. **Footer**
79+
- Brand identity
80+
- Social media links
81+
- Quick navigation
82+
- Site statistics including visitor counter
83+
84+
### ๐Ÿ› ๏ธ **Technical Features**
85+
- **Visitor Counter** using localStorage
86+
- **Form Handling** with Formspree (easy setup)
87+
- **Lazy Loading** for optimized performance
88+
- **Debounced Scroll Events** for better performance
89+
- **Intersection Observer API** for scroll animations
90+
- **Custom CSS Variables** for easy theming
91+
- **No jQuery** - Pure vanilla JavaScript
92+
- **Easter Egg** - Konami Code surprise! ๐ŸŽฎ
93+
94+
## ๐Ÿš€ Quick Start
95+
96+
### Prerequisites
97+
- A modern web browser
98+
- A code editor (VS Code recommended)
99+
- Git installed on your machine
100+
- (Optional) Node.js for local server
101+
102+
### Installation
103+
104+
1. **Clone the repository**
105+
```bash
106+
git clone https://github.com/G-code7/g-code7.github.io.git
107+
cd g-code7.github.io
108+
```
109+
110+
2. **Open with Live Server**
111+
```bash
112+
# If you have VS Code with Live Server extension
113+
# Right-click on index.html and select "Open with Live Server"
114+
115+
# Or use Python's built-in server
116+
python -m http.server 8000
117+
118+
# Or use Node.js http-server
119+
npx http-server
120+
```
121+
122+
3. **Visit in browser**
123+
```
124+
http://localhost:8000
125+
```
126+
127+
## ๐Ÿ“‚ File Structure
128+
129+
```
130+
portfolio/
131+
โ”‚
132+
โ”œโ”€โ”€ index.html # Main HTML file
133+
โ”œโ”€โ”€ styles.css # All CSS styles and animations
134+
โ”œโ”€โ”€ script.js # JavaScript functionality
135+
โ”œโ”€โ”€ README.md # This file
136+
โ”‚
137+
โ””โ”€โ”€ assets/ # Images and media
138+
โ”œโ”€โ”€ logo.png
139+
โ”œโ”€โ”€ projects/
140+
โ””โ”€โ”€ icons/
141+
```
142+
143+
## ๐ŸŒ Deployment
144+
145+
### GitHub Pages
146+
147+
1. **Push to GitHub**
148+
```bash
149+
git add .
150+
git commit -m "Initial portfolio commit"
151+
git push origin main
152+
```
153+
154+
2. **Enable GitHub Pages**
155+
- Go to repository Settings
156+
- Navigate to Pages section
157+
- Select `main` branch
158+
- Click Save
159+
160+
3. **Visit your site**
161+
- `https://yourusername.github.io`
162+
163+
### Alternative Deployment Options
164+
165+
- **Netlify**: Drag and drop your folder
166+
- **Vercel**: Connect your GitHub repo
167+
- **Render**: Deploy static site from GitHub
168+
169+
## ๐ŸŽฏ Performance Optimization
170+
171+
- โœ… Minified CSS and JS (optional)
172+
- โœ… Lazy loading images
173+
- โœ… Debounced scroll events
174+
- โœ… Optimized animations
175+
- โœ… Reduced DOM manipulation
176+
- โœ… Efficient CSS selectors
177+
178+
## ๐Ÿ”ง Troubleshooting
179+
180+
### Animations not working
181+
- Check browser console for errors
182+
- Ensure Anime.js and AOS libraries are loaded
183+
- Verify internet connection (CDN dependencies)
184+
185+
### Form not submitting
186+
- Check Formspree form ID is correct
187+
- Look for errors in browser console
188+
- Verify email fallback is configured properly
189+
190+
### Mobile menu not working
191+
- Clear browser cache
192+
- Check JavaScript is enabled
193+
- Verify no console errors
194+
195+
## ๐Ÿ“ฑ Browser Support
196+
197+
- โœ… Chrome (latest)
198+
- โœ… Firefox (latest)
199+
- โœ… Safari (latest)
200+
- โœ… Edge (latest)
201+
- โš ๏ธ IE11 (limited support)
202+
203+
## ๐Ÿค Contributing
204+
205+
Contributions, issues, and feature requests are welcome!
206+
207+
1. Fork the repository
208+
2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
209+
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
210+
4. Push to the branch (`git push origin feature/AmazingFeature`)
211+
5. Open a Pull Request
212+
213+
## ๐Ÿ“ License
214+
215+
This project is **MIT** licensed - feel free to use it for your own portfolio!
216+
217+
## ๐Ÿ™ Acknowledgments
218+
219+
- Design inspiration from modern web trends
220+
- Animations powered by [Anime.js](https://animejs.com/)
221+
- Scroll animations by [AOS](https://michalsnik.github.io/aos/)
222+
- Icons from [Font Awesome](https://fontawesome.com/)
223+
- Fonts from [Google Fonts](https://fonts.google.com/)
224+
225+
## ๐Ÿ“Š GitHub Stats
226+
227+
![GitHub Stats](https://github-readme-stats.vercel.app/api?username=G-code7&show_icons=true&theme=radical)
228+
229+
## ๐Ÿ’ผ About Me
230+
231+
I am a **Results-Driven Full Stack Web Developer** with a solid **5+ year track record** in creating high-performance, scalable web applications. My professional focus is on delivering end-to-end technical solutions by leveraging:
232+
233+
- ๐ŸŽจ Modern front-end frameworks (React.js, Next.js)
234+
- ๐Ÿ”ง Robust back-end architecture (Python, Django, Flask)
235+
- โ˜๏ธ DevOps practices (Docker, Kubernetes, AWS)
236+
- ๐ŸŽฏ Strong UI/UX design integration
237+
238+
### ๐Ÿ”— Connect With Me
239+
240+
- **Portfolio**: [g-code7.github.io](https://g-code7.github.io)
241+
- **LinkedIn**: [Gustavo Liendo](https://www.linkedin.com/in/gustavo-liendo-b5b668111/)
242+
- **GitHub**: [@G-code7](https://github.com/G-code7)
243+
244+
## ๐ŸŽฎ Easter Eggs
245+
246+
Try entering the Konami Code on the website:
247+
```
248+
โ†‘ โ†‘ โ†“ โ†“ โ† โ†’ โ† โ†’ B A
249+
```
250+
251+
---
252+
253+
<div align="center">
254+
255+
**Made with โค๏ธ and lots of โ˜• by Gustavo Liendo**
256+
257+
*"Always learning. Always growing. Never stopping."*
258+
259+
โญ Star this repo if you like it!
260+
261+
</div>

0 commit comments

Comments
ย (0)