|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>TechAsen | System Admin Portfolio</title> |
| 7 | + <style> |
| 8 | + body { |
| 9 | + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 10 | + margin: 0; |
| 11 | + padding: 0; |
| 12 | + background-color: #0f1117; |
| 13 | + color: #ffffff; |
| 14 | + } |
| 15 | + header { |
| 16 | + background-color: #1f2233; |
| 17 | + padding: 2rem; |
| 18 | + text-align: center; |
| 19 | + } |
| 20 | + h1 { |
| 21 | + margin: 0; |
| 22 | + font-size: 2.5rem; |
| 23 | + } |
| 24 | + p.subtitle { |
| 25 | + color: #a9a9a9; |
| 26 | + font-style: italic; |
| 27 | + } |
| 28 | + main { |
| 29 | + max-width: 900px; |
| 30 | + margin: auto; |
| 31 | + padding: 2rem; |
| 32 | + } |
| 33 | + section { |
| 34 | + margin-bottom: 2rem; |
| 35 | + } |
| 36 | + .repo { |
| 37 | + background-color: #1e1e2f; |
| 38 | + padding: 1rem; |
| 39 | + margin: 1rem 0; |
| 40 | + border-radius: 8px; |
| 41 | + } |
| 42 | + .repo h3 { |
| 43 | + margin: 0; |
| 44 | + color: #4fc3f7; |
| 45 | + } |
| 46 | + footer { |
| 47 | + text-align: center; |
| 48 | + padding: 1rem; |
| 49 | + font-size: 0.9rem; |
| 50 | + color: #666; |
| 51 | + } |
| 52 | + a { |
| 53 | + color: #4fc3f7; |
| 54 | + text-decoration: none; |
| 55 | + } |
| 56 | + a:hover { |
| 57 | + text-decoration: underline; |
| 58 | + } |
| 59 | + </style> |
| 60 | +</head> |
| 61 | +<body> |
| 62 | + <header> |
| 63 | + <h1>TechAsen</h1> |
| 64 | + <p class="subtitle">System Administrator | Network Automation | Homelab Enthusiast</p> |
| 65 | + </header> |
| 66 | + <main> |
| 67 | + <section> |
| 68 | + <h2>🔧 About Me</h2> |
| 69 | + <p>I build and maintain systems that work smoothly, securely, and efficiently. I'm passionate about Linux, automation, and helping networks stay fast and reliable.</p> |
| 70 | + </section> |
| 71 | + <section> |
| 72 | + <h2>📁 Featured Projects</h2> |
| 73 | + <div class="repo"> |
| 74 | + <h3><a href="https://github.com/TechAsen/homelab-infra">homelab-infra</a></h3> |
| 75 | + <p>My self-hosted infrastructure setup: documentation, automation, and network diagrams.</p> |
| 76 | + </div> |
| 77 | + <div class="repo"> |
| 78 | + <h3><a href="https://github.com/TechAsen/linux-scripts">linux-scripts</a></h3> |
| 79 | + <p>Handy bash scripts for system backups, log rotation, and system updates.</p> |
| 80 | + </div> |
| 81 | + <div class="repo"> |
| 82 | + <h3><a href="https://github.com/TechAsen/mikrotik-configs">mikrotik-configs</a></h3> |
| 83 | + <p>Mikrotik RouterOS configurations, firewall rules, and WireGuard VPN setups.</p> |
| 84 | + </div> |
| 85 | + </section> |
| 86 | + <section> |
| 87 | + <h2>📬 Contact</h2> |
| 88 | + <p>Email: <a href="mailto:asen.techadmin@example.com">asen.techadmin@example.com</a></p> |
| 89 | + <p>GitHub: <a href="https://github.com/TechAsen">TechAsen</a></p> |
| 90 | + <p>LinkedIn: <a href="https://linkedin.com/in/asen-asenov">Asen Asenov</a></p> |
| 91 | + </section> |
| 92 | + </main> |
| 93 | + <footer> |
| 94 | + <p>© 2025 TechAsen. Built with passion and powered by Linux.</p> |
| 95 | + </footer> |
| 96 | +</body> |
| 97 | +</html> |
| 98 | + |
0 commit comments