-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
110 lines (101 loc) · 4.22 KB
/
contact.html
File metadata and controls
110 lines (101 loc) · 4.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CRYPTONOMIC - Contact</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="./assets/img/logo_top.png" rel="icon">
<link href="./assets/img/logo_top.png" rel="apple-touch-icon">
<!-- Tailwind CSS Files -->
<link href="./output.css" rel="stylesheet">
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//matomo.cryptonomic-infra.tech/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '3']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<div class="h-full">
<!--==========================
Header
============================-->
<header class="flex flex-col items-center pt-4 sm:pt-14">
<!--==========================
Navigation
============================-->
<nav class="flex gap-8">
<a href="/"> Home </a>
<a href="/work.html"> Work </a>
<a href="/contact.html" class="font-bold"> Contact </a>
</nav>
</header>
<!--==========================
Main
============================-->
<main class="px-10 sm:px-20 xl:pl-[15.0625rem] xl:pr-[9.1875rem]">
<div class="xl:pl-[12.3125rem] xl:pr-[290px]">
<h1 class="text-[2rem] text-center pt-[5.125rem] pb-7 lg:mr-[6.0625rem"> Get in Touch </h1>
<div class="xl:pl-[1.75rem] flex flex-col gap-10 sm:gap-0 justify-around sm:flex-row">
<!--==========================
Address
============================-->
<div>
<p class="font-bold pb-[0.8125rem]"> Address </p>
<a href="https://maps.app.goo.gl/LDigBE6ZEYmTKJ3S7" target="framename" rel="noopener noreferrer">
<ul class="text-sm">
<li> 456 Johnson Ave. </li>
<li> Suite 216 </li>
<li> Brooklyn, NY 11237 </li>
<li> United States </li>
</ul>
</a>
</div>
<!--==========================
Email
============================-->
<div class="xl:pl-[1.75rem]">
<p class="font-bold pb-[0.8125rem]"> Email </p>
<p>
<a href="mailto:info@cryptonomic.tech">
info@cryptonomic.tech
</a>
</p>
</div>
</div>
<div class="bg-btnBg mt-10 p-2 text-sm text-center">
<p>
For technical support, visit our
<a href="https://discourse.cryptonomic.tech/" target="_blank" rel="noopener noreferrer" class="underline"> Discourse </a> site
</p>
</div>
</div>
</main>
<!--==========================
Footer
============================-->
<div class="absolute bottom-0 w-full">
<footer class="bg-footerBg text-lg font-['Avenir'] flex flex-wrap gap-6 p-8 justify-center items-center">
<a href="https://github.com/Cryptonomic" target="_blank" rel="noopener noreferrer" class="underline"> Github </a>
<a href="https://twitter.com/CryptonomicTech" target="_blank" rel="noopener noreferrer" class="underline"> Twitter (X) </a>
<a href="https://www.linkedin.com/company/cryptonomic" target="_blank" rel="noopener noreferrer" class="underline"> Linkedin </a>
<a href="https://medium.com/the-cryptonomic-aperiodical" target="_blank" rel="noopener noreferrer" class="underline"> Medium </a>
<a href="https://discourse.cryptonomic.tech/" target="_blank" rel="noopener noreferrer" class="underline"> Discourse </a>
<a href="https://warpcast.com/cryptonomic" target="_blank" rel="noopener noreferrer" class="underline"> Farcaster </a>
</footer>
</div>
</div>
</body>
</html>