blob: d97c2baa651b39231cac48ce9ea38cddcead96e2 (
plain)
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
|
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>WatchDogLanding</title>
<link rel="stylesheet" href="react-frontend/src/css/Landing.css">
</head>
<body>
<div class="nav-bar">
<div class="topnav">
<a href="#team">Team</a>
<a href="#app-intro">About</a>
<a href="#intro">Home</a>
</div>
</div>
<main>
<section id="intro" class="intro">
<img src="react-frontend/src/components/images/mainlogo.png" alt="logo">
<button id="enter-watchdogs">ENTER</button>
</section>
<section id="1" class="app-preview">
<img id="preview" src="react-frontend/src/images/previewwatchdog.png">
<span id="preview-text">preview</span>
</section>
<section id="app-intro">
<h1 class="heading"> Our App </h1>
<p></p>
<p class="text">Inspiration</p>
<div class="appinfotxt">who we are; our inspi</div>
<p></p>
<p class="text">The Data</p>
<div class="appinfotxt">who we are; our inspi</div>
<p></p>
<p class="text">The Algorithm</p>
<div class="appinfotxt">who we are; our inspiration; purpose of our app: who for, what it's not</div>
<p></p><p></p><p></p><p></p><p></p>
</section>
<section id="team">
<div class="team">
<div id="team-holder" class="center">
<h1 id="team-heading" class="heading">Meet the Team</h1>
<div id="people-holder">
<div class="team-person-holder">
<div class="team-person">
<img src="" height="100%">
</div>
<p class="team-text">Clark</p>
</div>
<div class="team-person-holder">
<div class="team-person">
<img src="" height="100%">
</div>
<p class="team-text">Julia</p>
</div>
<div class="team-person-holder">
<div class="team-person">
<img src="" height="100%">
</div>
<p class="team-text">Michael</p>
</div>
<div class="team-person-holder">
<div class="team-person">
<img src="react-frontend/src/images/reagan.png" height="100%">
</div>
<p class="team-text">Reagan Hunt</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer id="footer">
<p></p>
<div class="footer-item">Disclaimer</div>
<p></p>
<div class="footer-subtext">Suspicion ranks returned by <span>WatchDogs</span>’
algorithm DO NOT prove--or even suggest--that an individual has
engaged in insider trading. <span>WatchDogs</span> suspicion ranks should not
be interpreted as indication of an individual’s participation in
illegal activity. <span>WatchDogs</span> data, including suspicion ranks, cannot
be used as evidence in legal proceedings. Please use WatchDogs as
it is intended, and use discretion when interpreting algorithmic results.
</div>
<p></p>
</footer>
</body>
</html>
|