-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (101 loc) · 2.87 KB
/
index.html
File metadata and controls
102 lines (101 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TechAsen | System Admin Portfolio</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #0f1117;
color: #ffffff;
}
header {
background-color: #1f2233;
padding: 2rem;
text-align: center;
}
h1 {
margin: 0;
font-size: 2.5rem;
}
p.subtitle {
color: #a9a9a9;
font-style: italic;
}
main {
max-width: 900px;
margin: auto;
padding: 2rem;
}
section {
margin-bottom: 2rem;
}
.repo {
background-color: #1e1e2f;
padding: 1rem;
margin: 1rem 0;
border-radius: 8px;
}
.repo h3 {
margin: 0;
color: #4fc3f7;
}
footer {
text-align: center;
padding: 1rem;
font-size: 0.9rem;
color: #666;
}
a {
color: #4fc3f7;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>TechAsen</h1>
<p class="subtitle">System Administrator | Linux Enthusiast</p>
</header>
<main>
<section>
<h2>🔧 About Me</h2>
<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>
</section>
<section>
<h2>📁 Featured Projects</h2>
<div class="repo">
<h3><a href="https://github.com/TechAsen/homelab">homelab</a></h3>
<p>My self-hosted infrastructure setup: documentation, automation, and network diagrams.</p>
</div>
<div class="repo">
<h3><a href="https://github.com/TechAsen/linux-scripts">linux-scripts</a></h3>
<p>Handy bash scripts for system backups, log rotation, and system updates.</p>
</div>
<div class="repo">
<h3><a href="https://github.com/TechAsen/powershell-scripts">powershell-scripts</a></h3>
<p>Useful PowerShell scripts for remote software management, system maintenance, and Windows automation tasks.</p>
</div>
<div class="repo">
<h3><a href="https://github.com/TechAsen/mikrotik-configs">mikrotik-configs</a></h3>
<p>Mikrotik RouterOS configurations, firewall rules, and WireGuard VPN setups.</p>
</div>
</section>
<section>
<h2>📬 Contact</h2>
<p>Email: <a href="mailto:asen.asenov@techasen.eu">asen.asenov@techasen.eu</a></p>
<p>GitHub: <a href="https://github.com/TechAsen">TechAsen</a></p>
<p>LinkedIn: <a href="https://linkedin.com/in/asen-asenov-6838a619b">Asen Asenov</a></p>
</section>
</main>
<footer>
<p>© 2025 TechAsen. Built with passion and powered by Linux.</p>
</footer>
</body>
</html>