-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (101 loc) · 4.14 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Jeferson Cruz">
<meta name="theme-color" content="#359de0" />
<link rel="icon" href="img/blackfish-favicon.png">
<link rel="manifest" href="./manifest.json">
<title>BLACKFISH LABS</title>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Bootstrap core CSS/JS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Rx+T1VzGupg4BHQYs2gCW9It+akI2MM/mndMCy36UVfodzcJcF0GGLxZIzObiEfa"
crossorigin="anonymous"></script>
<!-- Fonts -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css"
integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link href="css/application.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-90994388-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-90994388-2');
</script>
</head>
<body>
<main>
<div class="container py-4">
<header class="pb-3 mb-2 border-bottom">
<a href="/" class="d-flex align-items-center text-body-emphasis text-decoration-none">
<img src="img/blackfish-favicon.png" class="img-fluid" alt="" width="40" height="32" height="auto">
<span class="fs-4"><b>blackfish</b>.labs</span>
</a>
</header>
<div class="p-5 mb-2 bg-body-tertiary rounded-3">
<div class="container-fluid py-2">
<div style="text-align:center">
<img src="img/blackfish-trade.png" class="img-fluid" alt="" width="400" height="auto">
<hr>
<p class="fs-4">
tecnologia <b>inteligente</b> para <b>trading</b>
</p>
</div>
</div>
</div>
<div class="row align-items-md-stretch">
<div class="col-md-6 mb-3">
<div class="h-100 p-5 text-bg-dark border rounded-3">
<h2><i class="fas fa-robot fa-lg"></i> algorithmic trading</h2>
<p>negociamos por meio de nossos próprios algoritimos com estratégias que são construídas e
testadas diariamente.</p>
</div>
</div>
<div class="col-md-6 mb-3">
<div class="h-100 p-5 text-bg-dark border rounded-3">
<h2><i class="fas fa-chart-line fa-lg"></i> quant</h2>
<p>monitoramos comportamentos de mercados e identificamos oportunidades de investimento.</p>
</div>
</div>
<div class="col-md-6 mb-3">
<div class="h-100 p-5 text-bg-dark border rounded-3">
<h2><i class="fas fa-coins fa-lg"></i> defi</h2>
<p>exploramos o ecossistema defi para obter o melhor da renda passiva em blockchains.</p>
</div>
</div>
<div class="col-md-6 mb-3">
<div class="h-100 p-5 text-bg-dark border rounded-3">
<h2><i class="fas fa-leaf fa-lg"></i> commodities</h2>
<p>analisamos o mercado de commodities em busca de oportunidades para operações de hedge ou
alavancagem.</p>
</div>
</div>
</div>
<footer class="pt-3 mt-4 text-body-secondary border-top">
© 2020-2025 | JEFERSON CRUZ
</footer>
</div>
</main>
</body>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('./sw.js');
}
</script>
</html>