-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplantminder.html
53 lines (49 loc) · 2.4 KB
/
plantminder.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
<!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">
<title>Plantminder</title>
<meta name="description" content="Plantminder App">
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="shortcut icon" type="image/png" href="/assets/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png">
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html">Liam Bates</a>
<a href="breadhead.html">Breadhead</a>
<a href="seasoneats.html">SeasonEats</a>
<a class="active" href="plantminder.html">Plantminder</a>
<a href="javascript:void(0);" class="icon" onclick="showMenu()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="hero hero-plant">
<a class="down" href="#about" data-scroll><i class="icon fa fa-chevron-down" aria-hidden="true"></i></a>
</div>
<section id="about">
<div class="user-details">
<h1>About</h1>
<p>Inspired by traditional plant journals, Plantminder takes the hassle out of managing your plant's needs. Add your plants info, set up reminders, and start a journal of completed tasks, photos, and notes.</p>
<p>Use the journal to keep track of your plants growth and health. Get reminded when you need to water, mist, or fertilize your plant.</p>
<a href="https://apps.apple.com/us/app/plantminder/id1535504485?ls=1" style="display:inline-block;overflow:hidden;background:url(assets/svg/app_store.svg) no-repeat;width:135px;height:40px;"></a>
<h1>Support</h1>
<p>If you require any support please contact me at <a aria-label="Support Email" href="mailto:[email protected]">[email protected]</a> and I will look into the issue for you.</p>
<h1>Development</h1>
<p>Plantminder is built upon SwiftUI, Core Data, and CloudKit. </p>
</div>
</section>
<footer class="footer">
<p>Copyright © 2023 Liam Bates</p>
</footer>
<script src="assets/js/show-menu.js"></script>
<script src="/assets/js/sweet-scroll.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
new SweetScroll({});
}, !1);
</script>
</body>
</html>