-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (95 loc) · 5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dynamic Web Experience</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.1.4/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="bg-blue-600 text-white py-6 mb-6">
<div class="container mx-auto flex flex-col sm:flex-row justify-center sm:justify-between items-center">
<h1 class="text-4xl font-bold header-title">Kompendium</h1>
<nav class="sm:ml-auto mt-4 sm:mt-0">
<a href="https://github.com/kompendium-ano" class="hover:text-blue-300 mx-2">Solutions</a> |
<a href="mailto:info@kompendium.co" class="hover:text-blue-300 mx-2">Contact Us</a>
</nav>
</div>
</header>
<main>
<section id="services" class="container mx-auto p-4">
<h2 class="text-3xl font-bold text-center mb-4 services-title">Services</h2>
<div class="grid md:grid-cols-3 gap-4">
<!-- Custom Software Development -->
<div class="card hover:shadow-lg transition duration-300 ease-in-out" data-aos="fade-up">
<div class="icon-container p-4">
<img src="media/Image1.svg" alt="Custom Software Development Icon" class="icon w-16 h-16 mx-auto">
</div>
<div class="m-4">
<h3 class="text-2xl mb-2">Custom Software Development</h3>
<p class="text-gray-600">Customized, cost-effective business solutions.</p>
</div>
</div>
<!-- Smart Contract Development -->
<div class="card hover:shadow-lg transition duration-300 ease-in-out" data-aos="fade-up">
<div class="icon-container p-4">
<img src="media/Image2.svg" alt="Smart Contracts Development Icon" class="icon w-16 h-16 mx-auto">
</div>
<div class="m-4">
<h3 class="text-2xl mb-2">Smart Contracts Development</h3>
<p class="text-gray-600">Efficient & secure custom contracts.</p>
</div>
</div>
<!-- Crypto Wallet Development -->
<div class="card hover:shadow-lg transition duration-300 ease-in-out" data-aos="fade-up">
<div class="icon-container p-4">
<img src="media/Image3.svg" alt="Crypto Wallets Icon" class="icon w-16 h-16 mx-auto">
</div>
<div class="m-4">
<h3 class="text-2xl mb-2">Crypto Wallets</h3>
<p class="text-gray-600">Crypto wallets & exchange integration services.</p>
</div>
</div>
<!-- dApp Development -->
<div class="card hover:shadow-lg transition duration-300 ease-in-out" data-aos="fade-up">
<div class="icon-container p-4">
<img src="media/Image4.svg" alt="dApps & Deployment Icon" class="icon w-16 h-16 mx-auto">
</div>
<div class="m-4">
<h3 class="text-2xl mb-2">dApps & Deployment</h3>
<p class="text-gray-600">Unlocking potential of cryptocurrency & identity.</p>
</div>
</div>
<!-- Node Operator -->
<div class="card hover:shadow-lg transition duration-300 ease-in-out" data-aos="fade-up">
<div class="icon-container p-4">
<img src="media/Image5.svg" alt="Node Validator Icon" class="icon w-16 h-16 mx-auto">
</div>
<div class="m-4">
<h3 class="text-2xl mb-2">Node Validator</h3>
<p class="text-gray-600">Validator, contributor for the Accumulate Network.</p>
</div>
</div>
<!-- Developer Tooling -->
<div class="card hover:shadow-lg transition duration-300 ease-in-out" data-aos="fade-up">
<div class="icon-container p-4">
<img src="media/Image6.svg" alt="Developer Tooling Icon" class="icon w-16 h-16 mx-auto">
</div>
<div class="m-4">
<h3 class="text-2xl mb-2">Developer Tooling</h3>
<p class="text-gray-600">Libraries & SDKs for improved, safe development.</p>
</div>
</div>
</div>
</section>
</main>
<footer class="bg-gray-900 text-white text-center py-6 mt-6">
<p>© 2023 Kompendium, LLC. All Rights Reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>