-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (106 loc) · 5.9 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
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!-- <link rel="icon" type="image/png" href="img/temp-logo.png"/> -->
<title>League Voice</title>
<link href = "vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href = "vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href = "https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href = "https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link rel = "stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Raleway">
<link href = "styles.css" rel="stylesheet" type="text/css">
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
Menu <i class="fa fa-bars"></i>
</button>
</div>
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<li><a class="page-scroll" href="#about">About</a></li>
<li><a class="page-scroll" href="#schedule">Demo</a></li>
<li><a class="page-scroll" href="#connect">Connect</a></li>
</ul>
</div>
</div>
</nav>
<header class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 style="font-size: 50px !important; font-family: 'Raleway', sans-serif;">League Voice</h2>
<p class="" style = "font-family: 'Raleway'; padding-bottom: 20px; padding-top: 10px; font-size: 18px">Improving gameplay through data retrieval and monitoring</p>
<a class="btn btn-default btn-lg" href="https://discord.gg/WV4Y7Fg" target="_blank"></i><span class="network-name">Discord</span></a>
<a class="btn btn-default btn-lg" href="https://github.com/LeagueVoice/LeagueVoice" target="_blank"></i><span class="network-name"> GitHub </span></a>
</ul>
</div>
</div>
</div>
</div>
</header>
<section id="about" class="container content-section text-center">
<div class="row">
<h3 style = "padding-bottom: 20px">About</h3>
<div class="col-lg-8 col-lg-offset-2" style = "font-family:'Raleway'">
<p style = "font-size: 16px">League Voice is a Google Assistant reference tool that would consolidate frequently-referenced info that's both provided by endpoints (ie. champ winrate, build order, runes) and not (ie. champ ability damage per skill rank). We provide support for many utterances with the use case of cutting out navigating to sites like op.gg and the lolwikia before or during a match.</p>
</div>
</div>
</section>
<section id="schedule" class="content-section text-center">
<div class="download-section">
<div class = "container">
<h3 style = "padding-bottom: 40px">Demo</h3>
<div class="row">
<div class = "col-lg-4 col-lg-offset-2" style = "margin-bottom: 40px">
<iframe
width="350"
height="430"
src="https://console.dialogflow.com/api-client/demo/embedded/c1807ef5-ad9a-44b9-98c2-c6cb11b76a45">
</iframe>
</div>
<div class = "col-lg-4">
<h3>Test Utterances:</h3>
<hr>
<p>“I’m playing mid. Who should I play?”</p>
<p>“What is Annie’s passive?”</p>
<p>“What is the cooldown on Annie’s Q?”</p>
<p>“Tell me about Annie”</p>
<p>“Annie just flashed”</p>
<p>“Give me an item suggestion”</p>
<p>“Give me some advice”</p>
<p>“When is Annie’s flash up?”</p>
<p>“Remind me to not pick into Annie.”</p>
<p>“Enemy team just took dragon, remind me 1 minute before”</p>
<p>“What champion should I play?”</p>
<p>“Who should I ban?”</p>
</div>
</div>
</div>
</div>
</section>
<section id="connect" class="container content-section text-center" style = "padding-bottom: 90px">
<div class="row">
<h3 style = "padding-bottom: 20px">Connect</h3>
<div class="col-lg-8 col-lg-offset-2" style = "font-family:'Raleway'">
<a class="btn btn-default btn-lg" href="https://discord.gg/WV4Y7Fg" target="_blank"></i><span class="network-name">Discord</span></a>
</div>
</div>
</section>
<footer>
<div class="container text-center">
<p class="" style = "font-family: 'Raleway'; font-size:14px">Copyright 2017 © League Voice</p>
</div>
</footer>
<script src="vendor/jquery/jquery.js"></script>
<script src = "bootstrap.js"></script>
</body>
</html>