-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalerts.html
63 lines (62 loc) · 3.66 KB
/
alerts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BroBot 8080 | Alerts</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,500" rel="stylesheet">
<script src="/app.js"></script>
<link rel="shortcut icon" href="/img/brobot.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3WB47XB86H"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3WB47XB86H');
</script>
</head>
<body>
<div class="masthead">
<div class="nav-main">
<div class="site-logo">
<img src="img/brobot.png" class="little-logo">BroBot 8080
</div>
<div class="mobile-menu" onclick="toggleMenu()" id="mobile-menu-button" aria-expanded="false">☰</div>
</div>
<div class="top-menu" id="top-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li class="selected"><a href="alerts.html">Alerts</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
<div id="content">
<h1>Alerts</h1>
<div>Brobot uses Telegram Messenger and Discord to provide real-time alerts and product links when products are reported as in-stock.</div><br>
<div>Telegram is a free messaging app for Android, iOS and PC/Mac/Linux. <a href="https://telegram.org/">Get it here</a>.</div>
<div>Discord is a free social messaging platform for Android, iOS and PC/Mac/Linux. <a href="https://discord.gg/FQJbWSY2hk">Join our discord here</a></div>
<h2>Current Alert Channels</h2>
<ul class="alert-channel-list">
<li><img src="img/telegram-logo.png"/><a href="https://t.me/joinchat/VxxB209mX705Y2Yx">NVIDIA Geforce RTX 3060</a></li>
<li><img src="img/telegram-logo.png"/><a href="https://t.me/RTX3070Alerts">NVIDIA Geforce RTX 3060 Ti / 3070</a></li>
<li><img src="img/telegram-logo.png"/><a href="https://t.me/RTX3080Alerts">NVIDIA Geforce RTX 3080</a></li>
<li><img src="img/telegram-logo.png"/><a href="https://t.me/RTX3090Alerts">NVIDIA Geforce RTX 3090</a></li>
<li><img src="img/telegram-logo.png"/><a href="https://t.me/Brobot5900XAlerts">AMD Ryzen 5900X / 5950X</a></li>
<li><img src="img/telegram-logo.png"/><a href="https://t.me/Zen3StockAlerts">AMD Ryzen 5000 Series (Zen 3) All models</a></li>
<li><img src="img/telegram-logo.png"/><a href="https://t.me/joinchat/AXqOdp9MprFiNTdh">AMD Radeon RX 6700 XT</a></li>
<li><img src="img/telegram-logo.png"/><a href="https://t.me/RDNA2StockAlerts">AMD Radeon RX 6800 / RX 6800 XT / RX 6900 XT</a></li>
<li><img src="img/telegram-logo.png"/><a href="https://t.me/BrobotXBoxSeriesXAlerts">XBox Series X / S</a></li>
<li><img src="img/telegram-logo.png"/><a href="https://t.me/PS5StockAlerts">PS5</a></li>
</ul>
<h2>Support and Discussion</h2>
<ul class="alert-channel-list">
<li><img src="img/telegram-logo.png"/><a href="https://t.me/brobot_users">Discussion and Support Group</a></li>
</ul>
</div>
<div id="footer">
</div>
</body>
</html>