-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (117 loc) · 4.56 KB
/
index.html
File metadata and controls
122 lines (117 loc) · 4.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MrBladeRX | Portfolio</title>
<meta name="description" content="Portfolio of MrBladeRX: fullstack developer and bot creator." />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container nav">
<a href="#" class="logo">MrBladeRX</a>
<button class="menu-btn" aria-label="Toggle menu">☰</button>
<nav class="menu">
<a href="#home">Home</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
</div>
</header>
<main>
<!-- Hero -->
<section id="home" class="section hero">
<div class="container hero-grid">
<div>
<h1 class="title"><span class="accent">MrBladeRX</span></h1>
<p class="subtitle">
Fullstack developer & bot creator. Building modern, fast, and reliable Discord bots.
</p>
<div class="cta">
<a class="btn primary" href="#projects">View Projects</a>
<a class="btn" href="#contact">Get in touch</a>
</div>
</div>
<div class="hero-card">
<div class="card">
<div class="card-row">
<span class="card-label">Role</span>
<span class="card-value">Full‑Stack Developer</span>
</div>
<div class="card-row">
<span class="card-label">Focus</span>
<span class="card-value">Performance • Accessibility • UX</span>
</div>
<div class="card-row">
<span class="card-label">Stack</span>
<span class="card-value">HTML • CSS • JS • React • Node</span>
</div>
</div>
</div>
</div>
</section>
<!-- Projects -->
<section id="projects" class="section">
<div class="container">
<h2>Projects</h2>
<div class="projects">
<article class="project">
<div class="project-head">
<h3>KSRP Bot</h3>
<span class="tag">Discord</span>
</div>
<p>Advanced moderation and server management bot for KSRP community. Features role automation, logging, and custom commands.</p>
<div class="project-actions">
<a class="btn small" href="#">Live</a>
<a class="btn small" href="#">Code</a>
</div>
</article>
<article class="project">
<div class="project-head">
<h3>GVRB Bot</h3>
<span class="tag">Gaming</span>
</div>
<p>Gaming‑focused bot with stats tracking, community features, and custom integrations for GVRB servers.</p>
<div class="project-actions">
<a class="btn small" href="#">Live</a>
<a class="btn small" href="#">Code</a>
</div>
</article>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="section">
<div class="container contact-grid">
<div>
<h2>Contact</h2>
<p>Reach out for collaborations or bot development. I usually reply within 24 hours.</p>
<ul class="contact-list">
<li><strong>Email:</strong> <a href="mailto:hello@mrbladerx.dev">hello@mrbladerx.dev</a></li>
<li><strong>Discord:</strong> officalmrbladerx</li>
</ul>
</div>
<form class="contact-form" id="contactForm">
<label>Name <input type="text" name="name" required /></label>
<label>Email <input type="email" name="email" required /></label>
<label>Message <textarea name="message" rows="5" required></textarea></label>
<button class="btn primary" type="submit">Send</button>
<p class="form-status" id="formStatus" aria-live="polite"></p>
</form>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container footer-flex">
<span>© <span id="year"></span> MrBladeRX | Crafted with focus</span>
</div>
</footer>
<script src="script.js" defer></script>
</body>
</html>