-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (125 loc) · 4.02 KB
/
index.html
File metadata and controls
136 lines (125 loc) · 4.02 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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 — 2025 Fast Robo, LLC</li>
<li>
<a href="https://twitter.com/fastrobo">@fastrobo</a>
</li>
<li>
<a href="mailto:support@fastrobo.co">support@fastrobo.co</a>
</li>
</ul>
</footer>
</div>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-BM1PLNSE8N"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-BM1PLNSE8N");
</script>
</body>
</html>