-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (122 loc) · 5.55 KB
/
index.html
File metadata and controls
135 lines (122 loc) · 5.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GPRVXS7690"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GPRVXS7690');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impervious | Cypherpunk development for Bitcoin</title>
<meta name="description" content="Impervious is a team of Bitcoin-focused developers contributing open source software for Bitcoin and decentralized naming.">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon-96x96.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="images/android-icon-192x192.png">
<meta name="msapplication-TileImage" content="images/ms-icon-144x144.png">
<link rel="canonical" href="https://impervious.com" />
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all">
<link href="css/impervioustyle.css" rel="stylesheet" type="text/css" media="all">
<link rel="stylesheet" href="https://use.typekit.net/ydg0vkm.css">
</head>
<body>
<!-- Hero -->
<div class="container">
<div class="hero">
<img src="images/logo.svg" class="logo" alt="Impervious">
<h1>Cypherpunk development for Bitcoin</h1>
<h2>Impervious is a team of developers contributing open source software to Bitcoin and decentralized naming systems</h2>
</div>
</div>
<!-- Details -->
<section class="details">
<div class="container-fluid">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<h5>Mission</h5>
<p>Impervious is building technology to help bring freedom to the internet. </p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<h5>Projects</h5>
<p><a href="https://akron.io">Akron Wallet</a> - Spaces-enabled Bitcoin wallet</p>
<p><a href="https://spacesprotocol.org/">Spaces Protocol</a> - Sovereign handles anchored in Bitcoin</p>
<p><a href="https://github.com/spacesprotocol/fabric">Fabric</a> - An open DHT network for Nostr and Spaces</p>
<p><a href="https://spaces.market">Spaces Market</a> - A marketplace for buying and selling spaces</p>
</div>
<div class="col-sm-8 col-sm-offset-2" style="margin-top: 6em;">
<h5>Past experiments</h5>
<p><a href="https://github.com/imperviousinc/beacon">Beacon</a> - A DNSSEC enabled browser with a P2P trust anchor.</p>
<p><a href="https://github.com/imperviousinc/fingertip">Fingertip</a> - A decentralized resolver.</p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<h5>Bitcoin Focus</h5>
<p>At Impervious, we believe Bitcoin is the foundation for a more free and open internet. Our development efforts are focused exclusively on Bitcoin and Bitcoin-adjacent technologies that enhance privacy, security, and self-sovereignty.</p>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section class="contact" id="contact">
<div class="container-fluid">
<div class="row">
<div class="col-sm-4 col-sm-offset-2">
<h5>Get in Touch</h5>
<p>We'd love to hear from you about Bitcoin development or collaboration opportunities.</p>
</div>
<div class="col-sm-4">
<!-- Form -->
<form>
<div class="form-group">
<input type="text" class="form-control" id="InputName" aria-describedby="Name" placeholder="Name">
</div>
<div class="form-group">
<input type="email" class="form-control" id="InputEmail" aria-describedby="Email" placeholder="Email">
</div>
<div class="form-group">
<textarea type="text" class="form-control" id="InputMessage" aria-describedby="Message" placeholder="Message"></textarea>
</div>
<button type="button" class="btn" data-toggle="modal" data-target="#thanks">Send</button>
</form>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer>
<div class="container text-center">
<div class="footer-logo">
<img src="images/logo-footer.svg">
</div>
<p>© Copyright 2025 Impervious Inc.</p>
</div>
</footer>
<!-- Modal Thanks -->
<div class="modal fade" id="thanks" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<h3>Oops!</h3>
<p style="text-align: center;">Sorry but this form doesn't work yet, please contact us via email at support@impervious.com.</p>
</div>
</div>
</div>
</div>
<!-- javascript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>