-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (127 loc) · 4.13 KB
/
index.html
File metadata and controls
146 lines (127 loc) · 4.13 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Konnect Finance | Official Links</title>
<meta name="description" content="Official links for Konnect Finance. Whitepaper, Community, and Updates.">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--bg-color: #0f172a; /* Dark Navy/Black */
--card-bg: #1e293b;
--text-color: #f8fafc;
--accent-color: #3b82f6; /* Konnect Blue - adjust as needed */
--hover-color: #2563eb;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 2rem 1rem;
}
.profile-container {
text-align: center;
margin-bottom: 2rem;
animation: fadeIn 1s ease-in;
}
.profile-img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 3px solid var(--accent-color);
object-fit: cover;
margin-bottom: 1rem;
background-color: #fff; /* Placeholder bg if transparent logo */
}
h1 {
font-size: 1.5rem;
margin: 0.5rem 0;
font-weight: 700;
}
p {
color: #94a3b8;
margin: 0;
font-size: 0.95rem;
}
.links-container {
width: 100%;
max-width: 480px;
display: flex;
flex-direction: column;
gap: 1rem;
}
.link-card {
background-color: var(--card-bg);
padding: 1rem 1.5rem;
border-radius: 50px; /* Pill shape */
text-decoration: none;
color: var(--text-color);
font-weight: 600;
display: flex;
align-items: center;
justify-content: center; /* Centered text */
position: relative;
transition: transform 0.2s, background-color 0.2s;
border: 1px solid rgba(255,255,255,0.05);
}
.link-card:hover {
transform: translateY(-3px);
background-color: var(--hover-color);
border-color: var(--accent-color);
}
.link-card i {
position: absolute;
left: 1.5rem;
font-size: 1.2rem;
}
footer {
margin-top: 3rem;
font-size: 0.8rem;
color: #64748b;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<div class="profile-container">
<img src="konnect_kct_logo.jpg" alt="Konnect Logo" class="profile-img">
<h1>Konnect Finance</h1>
<p>Connecting Finance to the Future</p>
</div>
<div class="links-container">
<a href="https://konnect.finance" class="link-card" target="_blank">
<i class="fas fa-globe"></i>
Official Website
</a>
<a href="Konnect_Whitepaper.pdf" class="link-card" target="_blank">
<i class="fas fa-file-pdf"></i>
Whitepaper
</a>
</a>
<a href="https://x.com/konnect_kct" class="link-card" target="_blank">
<i class="fab fa-twitter"></i>
X (Twitter)
</a>
<a href="https://discord.gg/cKjwFDvac" class="link-card" target="_blank">
<i class="fab fa-discord"></i>
Discord Community
</a>
<a href="https://medium.com/@KONNECT_KCT" class="link-card" target="_blank">
<i class="fab fa-medium"></i>
Medium Blog
</a>
</div>
<footer>
© 2025 Konnect Finance. All rights reserved.
</footer>
</body>
</html>