-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanageit.html
More file actions
72 lines (66 loc) · 2.38 KB
/
manageit.html
File metadata and controls
72 lines (66 loc) · 2.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>ManageIt</title>
<meta name="description" content="RedLeaf Systems builds beautiful, reliable software: web apps, mobile apps and custom systems.">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="icon" href="assets/media/logo.svg" type="image/svg+xml">
</head>
<body>
<header id="top" class="site-header">
<div class="container header-inner">
<a class="brand" href="index.html">
<img src="assets/media/logo.svg" alt="RedLeaf Systems Logo" class="logo" width="40" height="40">
<span class="brand-text">RedLeaf <strong>Systems</strong> > <b>ManageIt</b></span>
</a>
</div>
</header>
<main>
<section class="hero">
<div class="container hero-inner">
<div class="hero-text">
<h1>ManageIt</h1>
<p class="hero-ctas">
<a class="btn btn-primary" href="#">Download</a>
<a class="btn btn-ghost" href="#">Something else</a>
<a class="btn btn-back" style="float: right;" href="index.html">Back to home</a>
</p>
</div>
</div>
</section>
<section id="about" class="section container about">
<h2>What is ManageIt?</h2>
<p>Good question. We haven't written anything about it yet.</p>
</section>
<section id="apps" class="section container apps">
<h2>Features</h2>
<p class="muted">These are some of the app's features!</p>
<div class="grid app-grid">
<article class="app-card placeholder">
<div class="thumb"></div>
<h3>A useful feature</h3>
<p>It's so useful we haven't written down anything about it so far.</p>
</article>
<article class="app-card placeholder">
<div class="thumb"></div>
<h3>Another feature</h3>
<p>You don't get any details on this one either.</p>
</article>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container footer-inner">
<p>© <span id="year"></span> RedLeaf Systems -- Built with care.</p>
<nav class="footer-links">
<a href="#top">Back to top</a>
</nav>
</div>
</footer>
<script src="assets/js/main.js" defer></script>
</body>
</html>