-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (133 loc) · 6.61 KB
/
index.html
File metadata and controls
144 lines (133 loc) · 6.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>buggerman - Developer Portfolio</title>
<meta name="description" content="Software developer specializing in desktop applications, cross-platform development, and open source projects.">
<meta name="author" content="buggerman">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="buggerman - Developer Portfolio">
<meta property="og:description" content="Software developer specializing in desktop applications, cross-platform development, and open source projects.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://buggerman.github.io">
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.ico">
<!-- Styles -->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header>
<nav>
<div class="nav-container">
<h1 class="logo">buggerman</h1>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section id="home" class="hero">
<div class="hero-content">
<h2>Software Developer</h2>
<p>Specializing in desktop applications, cross-platform development, and open source projects.</p>
<div class="cta-buttons">
<a href="#projects" class="btn btn-primary">View Projects</a>
<a href="https://github.com/buggerman" class="btn btn-secondary" target="_blank">
<i class="fab fa-github"></i> GitHub
</a>
</div>
</div>
</section>
<section id="projects" class="projects">
<div class="container">
<h2>Featured Projects</h2>
<div class="project-grid">
<div class="project-card">
<div class="project-info">
<h3>YT Leechr</h3>
<p>A feature-rich PyQt6 GUI application for yt-dlp with queue management, format selection, and cross-platform support.</p>
<div class="tech-stack">
<span class="tech-tag">Python</span>
<span class="tech-tag">PyQt6</span>
<span class="tech-tag">Cross-Platform</span>
</div>
<div class="project-links">
<a href="https://github.com/buggerman/yt-leechr" target="_blank">
<i class="fab fa-github"></i> GitHub
</a>
<a href="https://flathub.org/apps/io.github.buggerman.yt-leechr" target="_blank">
<i class="fas fa-download"></i> Flathub
</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-info">
<h3>re-arch</h3>
<p>A modern architecture framework for building scalable and maintainable applications with clean separation of concerns.</p>
<div class="tech-stack">
<span class="tech-tag">Architecture</span>
<span class="tech-tag">Framework</span>
<span class="tech-tag">Clean Code</span>
</div>
<div class="project-links">
<a href="https://github.com/buggerman/re-arch" target="_blank">
<i class="fab fa-github"></i> GitHub
</a>
<a href="https://buggerman.github.io/re-arch/" target="_blank">
<i class="fas fa-globe"></i> Documentation
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2>About Me</h2>
<div class="about-content">
<div class="about-text">
<p>I'm a hobbyist software developer passionate about creating user-friendly desktop applications and contributing to open source projects.</p>
<p>I enjoy working with modern technologies and frameworks to build cross-platform solutions that solve real-world problems.</p>
<h3>Skills & Technologies</h3>
<div class="skills">
<span class="skill-tag">Python</span>
<span class="skill-tag">PyQt6</span>
<span class="skill-tag">Git</span>
<span class="skill-tag">GitHub Actions</span>
<span class="skill-tag">Cross-Platform Development</span>
<span class="skill-tag">Flatpak</span>
<span class="skill-tag">Testing</span>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Get In Touch</h2>
<p>Interested in collaborating or have a project in mind? Let's connect!</p>
<div class="contact-links">
<a href="https://github.com/buggerman" class="contact-link" target="_blank">
<i class="fab fa-github"></i>
<span>GitHub</span>
</a>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2025 buggerman. Built with ❤️ and deployed on GitHub Pages.</p>
</div>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>