-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (99 loc) · 3.81 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
<!DOCTYPE html>
<html>
<head>
<title>Fast Robo - Apps</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" media="all" href="assets/css/normalize.css">
<link rel="stylesheet" media="all" href="assets/css/milligram.min.css">
<link rel="stylesheet" media="all" href="assets/css/site.css">
</head>
<body>
<div class="container">
<header class="section">
<h1>Fast Robo</h1>
<p>
We make useful apps in California
</p>
</header>
<div class="section">
<small>iOS</small>
<div class="list">
<div class="item">
<a href="https://itunes.apple.com/us/app/pomodoro-pro/id966415847">
<img src="./assets/img/power_focus.png" alt="power focus icon - pomodoro timer">
<div class="title">Power Focus</div>
<span>iPhone + Watch pomodoro timer</span>
</a>
</div>
<div class="item">
<a href="https://itunes.apple.com/us/app/learn-korean-hangul-alphabet/id1344713126">
<img src="./assets/img/learn_korean.png" alt="learn korean icon - learn to read">
<div class="title">Learn Korean</div>
<span>Learn to read Korean</span>
</a>
</div>
<div class="item">
<a href="https://itunes.apple.com/us/app/tip-solver-premier-gratuity/id1130814051">
<img src="./assets/img/tip_solver.png" alt="tip solver icon - bill calculator">
<div class="title">Tip Solver</div>
<span>Bill gratuity calculator</span>
</a>
</div>
<div class="item">
<a href="https://itunes.apple.com/us/app/hoop-stars/id1282112219">
<img src="./assets/img/ar_hoops.png" alt="ar hoops icon - AR basketball">
<div class="title">AR Hoop Stars</div>
<span>Shoot hoops <span class="tag">AR</span></span>
</a>
</div>
</div>
</div>
<div class="section">
<small>macOS</small>
<div class="list">
<div class="item">
<a href="https://apps.apple.com/us/app/id1528299767">
<img src="./assets/img/copy_cleaner.png" class="no-border mac-app" alt="copy cleaner clipboard icon">
<div class="title">Copy Cleaner</div>
<span>Remove tracking from links</span>
</a>
</div>
</div>
</div>
<div class="section">
<small>web</small>
<div class="list">
<div class="item">
<a href="https://geographapp.com/">
<img src="./assets/img/geo.png" alt="geograph app icon - bookmark your gps location">
<div class="title">GeoGraph</div>
<span>Bookmark your location</span>
</a>
</div>
</div>
</div>
<footer class="section">
<ul>
<li>
© 2012 — 2023 Fast Robo, LLC
</li>
<li>
<a href="https://twitter.com/fastrobo">@fastrobo</a>
</li>
<li>
<a href="mailto:[email protected]">[email protected]</a>
</li>
</ul>
</footer>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59630267-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>