-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (97 loc) · 4.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Kondeo - Make Your Software Ideas a Reality</title>
<meta name="description" content="Custom software for individuals and businesses. Websites, progressive webapps, and more.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="styles.css">
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</head>
<body>
<!-- [0_0] I see you -->
<!-- No JavaScript here, sorry -->
<div class="welcome">
<h1>Kondeo</h1>
<b class="subtitle">Make your software ideas a reality.</b>
<br />
<br />
<p>
<a class="contact-button" href="mailto:[email protected]?">
<span>
Contact Us
</span>
<ion-icon name="arrow-round-forward"></ion-icon>
</a>
</p>
<p class="description">
We build custom software for individuals and businesses.<br />
Websites, mobile applications, progressive webapps, and more.<br />
</p>
<div class="projects-container">
<h2>
Our Projects
</h2>
<div class="project">
<img src="img/recipesage-screencap.jpg" />
<h3 class="project-title">RecipeSage - The Personal Recipe Keeper</h3>
<p>
RecipeSage is a free, personal recipe keeper for storing your recipe collection, creating meal plans, and managing your shopping lists.<br />
It's built on PWA technology, along with Ionic framework, and runs offline thanks to smart caching.
</p>
<p class="links">
<a href="https://recipesage.com" target="_blank">Website</a>
<a href="https://github.com/julianpoy/recipeclipper" target="_blank">Github</a>
</p>
</div>
<div class="project">
<img src="img/clip-tool-screencap.png" />
<h3 class="project-title">Recipe Clipper - Grab Recipes from the Web</h3>
<p>
The Recipe Clipper is an open source utility available as a WebExtension for grabbing recipes from<br />
(almost) any website using some smart CSS selectors, and is used to power <a href="https://recipesage.com">RecipeSage</a>.<br />
The Recipe Clipper is quite useful within a headless Chromium instance (ex. Puppeteer), for grabbing/scraping recipes from the web.
</p>
<p class="links">
<a href="https://recipesage.com" target="_blank">Website</a>
<a href="https://www.npmjs.com/package/@julianpoy/recipe-clipper" target="_blank">NPM</a>
<a href="https://github.com/julianpoy/recipeclipper" target="_blank">Github</a>
</p>
</div>
</div>
<div class="contact">
<h2>
Contact
</h2>
<span class="email">
<a href="mailto:[email protected]?">[email protected]</a>
</span><br />
<span class="phone">
(310) 737-8225
</span><br />
<span class="github">
<b>Github:</b> <a href="https://github.com/kondeo" target="_blank">@kondeo</a>
</span>
</div>
</div>
</body>
</html>