-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (64 loc) · 2.71 KB
/
index.html
File metadata and controls
69 lines (64 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pinnacore AI | Private Intelligence</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
body {
background-color: #0f172a;
color: #ffffff;
font-family: sans-serif;
}
.gradient-text {
background: linear-gradient(to right, #60a5fa, #c084fc);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.glass {
background: rgba(30, 41, 59, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
</style>
</head>
<body class="flex flex-col min-h-screen">
<nav class="flex justify-between items-center p-6 max-w-7xl mx-auto w-full">
<div class="text-2xl font-bold">PINNACORE<span class="text-blue-500">.AI</span></div>
<div class="space-x-4">
<a href="https://github.com/Pinnacore-AI" class="hover:text-blue-400">GitHub</a>
<span class="px-3 py-1 bg-green-500/20 text-green-400 rounded-full text-xs">SYSTEM ONLINE</span>
</div>
</nav>
<main class="flex-grow flex items-center justify-center text-center px-4">
<div class="max-w-4xl space-y-6">
<div
class="inline-block px-3 py-1 text-xs font-bold text-blue-300 bg-blue-900/50 rounded-full border border-blue-700">
160TB NEURAL CLOUD • LAHTI, FINLAND
</div>
<h1 class="text-5xl md:text-7xl font-extrabold">
Artificial Intelligence.<br>
<span class="gradient-text">Privately Yours.</span>
</h1>
<p class="text-xl text-slate-400 max-w-2xl mx-auto">
Pinnacore is the first European DePIN AI ecosystem.
Hosted on our own infrastructure. Your data never leaves the sanctuary.
</p>
<div class="flex justify-center gap-4 pt-4">
<a href="https://github.com/Pinnacore-AI/ajatuskumppani"
class="px-8 py-3 bg-white text-black font-bold rounded-lg hover:bg-gray-200">
Open Source
</a>
<a href="#" class="px-8 py-3 glass font-bold rounded-lg hover:bg-slate-800">
Launch App
</a>
</div>
</div>
</main>
<footer class="text-center py-6 text-slate-600 text-sm">
© 2024 Pinnacore AI. Powered by GMKTec & Terramaster.
</footer>
</body>
</html>