-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 2.56 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 2.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OPPRO.NET | Premium Development</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="dark-theme">
<canvas id="particleCanvas"></canvas>
<header>
<div class="container">
<nav>
<div class="logo">OPPRO<span>.NET</span></div>
<ul class="nav-menu">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="bots.html">Bots</a></li>
<li><a href="libraries.html">Libraries</a></li>
<li><a href="projects.html">Projekte</a></li>
<li><a href="impressum.html">Impressum</a></li>
<li><a href="agb.html">AGB</a></li>
<li><a href="datenschutz.html">Datenschutz</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section class="hero-visual">
<div class="hero-content">
<div class="badge badge-live">In Entwicklung: ManagerX v2.0</div>
<h1 class="main-title">We code the <span>future</span> of Discord.</h1>
<p class="hero-subtext">Hochperformante Bots, maßgeschneiderte Libraries und skalierbare Backend-Systeme. Entwickelt mit Präzision in Python & JavaScript.</p>
<div class="hero-actions">
<a href="projects.html" class="btn-secondary-glow">Showcase</a>
</div>
</div>
</section>
<div class="grid tech-grid">
<div class="card feature-card">
<div class="icon-wrap color-1">🐍</div>
<h3>Python Core</h3>
<p>Deep-Level Integration von <strong>Py-cord</strong> für maximale Kontrolle über Ihre Bot-Infrastruktur.</p>
</div>
<div class="card feature-card">
<div class="icon-wrap color-2">⚡</div>
<h3>High Speed</h3>
<p>Nutzung von <strong>Redis & PostgreSQL</strong> für Reaktionszeiten im Millisekundenbereich.</p>
</div>
<div class="card feature-card">
<div class="icon-wrap color-3">🛡️</div>
<h3>Reliability</h3>
<p>Enterprise-Grade Stabilität durch Docker-Containerisierung und automatisiertes Monitoring.</p>
</div>
</div>
</main>
<script src="js/particles.js"></script>
</body>
</html>