-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (104 loc) · 4.73 KB
/
index.html
File metadata and controls
116 lines (104 loc) · 4.73 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
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#16558F">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>Dino Bot</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
<link rel="manifest" href="images/favicon/site.webmanifest">
<!-- Style Sheets-->
<link href="css/main.css" rel="stylesheet" type="text/css" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap" rel="stylesheet">
<!-- Scripts -->
<script src="scripts/main.js" defer></script>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="row-Content">
<img src="images/navigationLogo.svg" class="brand-logo" draggable="false">
<div class="brand-title"> Dino Bot </div>
</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="pages/about.html">About</a></li>
<li><a href="pages/commands.html">Commands</a></li>
<li><a
href="https://discord.gg/jtTCcRpDdC"
target="_blank">Server</a></li>
</ul>
</div>
</nav>
<!-- Header -->
<section class="headerSection">
<div class="header-flex">
<h1 class="header-title">Achieve Focused Study Sessions.</h1>
<p class="header-description">Dino Bot is the best Discord bot for studying!</p>
<div class="button-flex">
<button type="button" class="inviteButton"
onclick=" window.open('https://discord.com/oauth2/authorize?client_id=976563173530419210&permissions=2048&scope=applications.commands%20bot', '_blank')">Invite</button>
<button type="button" class="githubButton"
onclick=" window.open('https://github.com/DiscordDinoBot', '_blank')">GitHub</button>
</div>
<div class="wave">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path
d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"
class="shape-fill"></path>
</svg>
</div>
</div>
</section>
<!-- Main -->
<section class="mainSection">
<div class="main-flex">
<div class="mainImage-flex">
<div class="mainText-flex">
<h1 class="mainTitle">Build Study Habits</h1>
<p class="mainDescription">Boost quality and quantity of work by taking breaks<br>
and spacing out your studying.</p>
</div>
<img src="images/Dino-Bot-Construction-Worker.svg" class="mainImages" draggable="false">
</div>
<div class="mainImageReverse-flex">
<div class="mainText-flex">
<h1 class="mainTitle">Increase Attention Span</h1>
<p class="mainDescription">Efficiently manage your time by studying using the <br>
Pomodoro method. This helps you decrease burnout and <br>
increase concentration.</p>
</div>
<img src="images/Dino-Bot-Tuxedo.svg" class="mainImages" draggable="false">
</div>
<div class="mainImage-flex">
<div class="mainText-flex">
<h1 class="mainTitle">Improve Grades</h1>
<p class="mainDescription">Enhance scores by using a scientifically proven form <br>
of studying that develops greater memory and productivity.</p>
</div>
<img src="images/Dino-Bot-Grad.svg" class="mainImages" draggable="false">
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-flex">
<p class="footerText"><a href="https://github.com/DiscordDinoBot/Dino-Bot/blob/main/PRIVACY.md" style="color: inherit;" target="_blank">Privacy Policy</a></p>
<p class="footerText"><a href="https://github.com/DiscordDinoBot/Dino-Bot/blob/main/LICENSE.txt" style="color: inherit;" target="_blank">MIT License</a></p>
<p class="footerText" style="opacity: 0.5;">Created by Callum Brezden</p>
</div>
</footer>
</body>
</html>