-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (81 loc) · 5.27 KB
/
Copy pathindex.html
File metadata and controls
83 lines (81 loc) · 5.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Alternative package manager for V">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<meta name="google-site-verification" content="BmGrbm5-MzHO6w_NN8bSWRUNg2cUaVSLMhLLwVtev0g" />
<title>vpkg - alternative package manager for V</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
<link rel="manifest" href="assets/site.webmanifest">
<link rel="mask-icon" href="assets/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<style>
.bg-vpkg { background-color: #31c9dd; }
.text-vpkg { color: #31c9dd; }
.bg-dl-btn { background-color: rgba(0, 0, 0, 0.2); }
.bg-dl-btn:hover { background-color: rgba(0, 0, 0, 0.4); }
.bg-vpkg-1 { background-color: #27a1b1; }
.hover\:bg-vpkg-1:hover { background-color: #1d7985; }
</style>
</head>
<body class="font-sans min-h-screen bg-white">
<div class="md:h-screen flex flex-col md:flex-row flex-no-wrap">
<div class="w-full md:w-1/2 p-8 md:p-16 lg:p-24 flex flex-col text-white justify-center bg-vpkg items-start">
<img src="assets/vpkg-logo@6x.png" class="w-1/2 md:w-2/3 mx-auto md:m-0 pb-8" alt="">
<h1 class="text-center md:text-left text-xl md:text-4xl xl:text-5xl mx-auto md:mt-auto leading-tight mb-12">An alternative package manager written for V.</h1>
<a href="https://github.com/vpkg-project/vpkg/releases" class="inline-block w-full lg:w-auto text-center lg:text-left text-xl lg:text-2xl hover:shadow-lg bg-dl-btn font-bold text-white rounded px-8 lg:px-16 py-4">Download</a>
<p class="mx-auto md:mx-0 md:mt-auto py-4">Pre-built binaries available for Linux and Windows.</p>
</div>
<div class="w-full md:w-1/2 p-8 lg:p-16 xl:p-24 flex flex-row flex-wrap">
<h2 class="text-xl xl:text-4xl text-center md:text-left mb-4 text-gray-700 font-bold">Bringing the best of dependency management on V.</h2>
<div class="w-full sm:w-1/2 p-1">
<h3 class="text-xl xl:text-2xl mb-3 text-gray-600">Decentralized.</h3>
<p>Download and use packages from other sources aside from VPM and the vpkg registry.</p>
</div>
<div class="w-full sm:w-1/2 p-1">
<h3 class="text-xl xl:text-2xl mb-3 text-gray-600">Easy to use.</h3>
<p>Set-up, use, and master the commands of vpkg CLI within minutes.</p>
</div>
<div class="w-full sm:w-1/2 p-1">
<h3 class="text-xl xl:text-2xl mb-3 text-gray-600">Fast.</h3>
<p>Runs perfectly on your potato PC up to the fastest supercomputers.</p>
</div>
<div class="w-full sm:w-1/2 p-1">
<h3 class="text-xl xl:text-2xl mb-3 text-gray-600">Interoperable.</h3>
<p>Supports v.mod, and .vpm.json for reading package manifests and managing dependencies.</p>
</div>
<div class="w-full sm:w-1/2 p-1">
<h3 class="text-xl xl:text-2xl mb-3 text-gray-600">Light.</h3>
<p>Weighs at less than 300kb. Perfect with devices running on tight storage or in low network conditions.</p>
</div>
<div class="w-full sm:w-1/2 p-1">
<h3 class="text-xl xl:text-2xl mb-3 text-gray-600">Reliable.</h3>
<p>Uses a lockfile mechanism to ensure that all your dependencies work across all of your machines.</p>
</div>
</div>
</div>
<div class="max-w-6xl px-8 md:px-2 mx-auto">
<section class="py-8 flex flex-col md:flex-row text-center md:text-left">
<div class="w-full md:w-3/4 md:pr-8">
<h2 class="text-3xl md:text-6xl mt-4 md:mt-0 mb-4">vpkg <span class="text-gray-600">registry</span></h2>
<p class="text-xl mb-8 md:pr-4">An alternative package registry for managing and publishing your V modules. <br />It's free, simple, and straightforward to use.</p>
</div>
<div class="w-full md:w-1/4 my-auto">
<a href="https://vpkg-project.github.io/registry" class="block bg-vpkg-1 text-center hover:bg-vpkg-1 hover:shadow border-b-2 font-bold text-xl text-white rounded-md p-3 md:p-6">Visit the registry</a>
</div>
</section>
</div>
<footer class="w-full">
<div class="max-w-6xl py-8 border-t-2 border-gray-400 text-gray-700 flex flex-row flex-no-wrap justify-between mx-auto px-2 text-center">
<p>© 2020 <a href="https://nedpals.xyz" class="hover:text-black">Ned Palacios</a> / <a href="https://github.com/vpkg-project" class="hover:text-black">vpkg project</a></p>
<a href="https://github.com/vpkg-project/vpkg" class="hover:text-black">Contribute on GitHub</a>
</div>
</footer>
</body>
</html>