2020-10-09 22:37:16 +03:00
<!DOCTYPE html>
< html lang = "en" >
2020-02-20 16:28:55 +03:00
2020-05-24 11:37:31 +03:00
{{ template "head.tpl.html" . }}
2020-02-20 16:28:55 +03:00
2020-11-28 22:23:40 +03:00
< body class = "relative bg-gray-800 text-gray-700 p-4 pt-10 flex flex-col min-h-screen max-w-screen-lg mx-auto justify-center" >
{{ template "header.tpl.html" . }}
2020-05-24 14:41:19 +03:00
{{ template "alerts.tpl.html" . }}
2020-11-28 22:23:40 +03:00
< div class = "absolute flex top-0 right-0 mr-8 mt-10 py-2" >
< div class = "mx-1" >
< a href = "login" class = "py-1 px-3 h-8 block rounded border border-green-700 text-white text-sm" > 🔑 Login️ < / a >
< / div >
< / div >
2020-05-30 21:41:27 +03:00
< main class = "mt-10 flex-grow flex justify-center w-full" >
2020-11-28 22:23:40 +03:00
< div class = "flex flex-col text-white" >
< h1 class = "text-4xl font-semibold antialiased text-center mb-2" > Keep Track of < span class = "text-green-700" > Your< / span > Coding Time 🕓< / h1 >
< p class = "text-center text-gray-500 text-xl my-2" > Wakapi is an open-source tool that helps you keep track of the time you have spent coding on different projects in different programming languages and more. Ideal for statistics freaks any anyone else.< / p >
2020-11-28 22:44:39 +03:00
2020-11-28 22:23:40 +03:00
< div class = "flex justify-center mt-4 mb-8 space-x-2" >
< a href = "login" >
< button type = "button" class = "py-1 px-3 rounded bg-green-700 hover:bg-green-800 text-white font-semibold" > 🚀 Try it!< / button >
< / a >
2020-11-28 22:53:19 +03:00
< a href = "https://github.com/muety/wakapi#%EF%B8%8F-server-setup" target = "_blank" rel = "noopener noreferrer" >
2020-11-28 22:23:40 +03:00
< button type = "button" class = "py-1 px-3 h-8 rounded border border-green-700 text-white" > 📡 Host it< / button >
< / a >
2020-11-28 22:53:19 +03:00
< a href = "https://github.com/muety/wakapi" target = "_blank" rel = "noopener noreferrer" >
2020-11-28 22:23:40 +03:00
< button type = "button" class = "py-1 px-3 h-8 rounded border border-green-700 text-white" >
2020-11-28 22:50:35 +03:00
< img alt = "GitHub Icon" src = "assets/images/ghicon.svg" width = "22px" >
2020-11-28 22:23:40 +03:00
< / button >
< / a >
< / div >
2020-11-28 22:44:39 +03:00
2020-11-28 22:23:40 +03:00
< div class = "flex justify-center my-8" >
2020-11-28 22:50:35 +03:00
< img alt = "App screenshot" src = "assets/images/screenshot.png" >
2020-11-28 22:23:40 +03:00
< / div >
2020-11-28 22:44:39 +03:00
2020-11-28 22:23:40 +03:00
< div class = "flex flex-col items-center mt-10" >
< h1 class = "font-semibold text-xl text-white m-0 border-b-4 border-green-700" > Features< / h1 >
< div class = "mt-4 text-lg" >
< ul >
< li > ✅ 100 % free and open-source< / li >
< li > ✅ Built by developers for developers< / li >
< li > ✅ Fancy statistics and plots< / li >
< li > ✅ Cool badges for readmes< / li >
< li > ✅ Intuitive REST API< / li >
2020-11-28 22:53:19 +03:00
< li > ✅ Compatible with < a href = "https://wakatime.com" target = "_blank" rel = "noopener noreferrer" class = "underline" > Wakatime< / a > < / li >
< li > ✅ < a href = "https://prometheus.io" target = "_blank" rel = "noopener noreferrer" class = "underline" > Prometheus< / a > metrics via < a href = "https://github.com/MacroPower/wakatime_exporter" target = "_blank" rel = "noopener noreferrer" class = "underline" > exporter< / a > < / li >
2020-11-28 22:23:40 +03:00
< li > ✅ Self-hosted< / li >
< / ul >
2020-02-20 17:39:56 +03:00
< / div >
2020-11-28 22:23:40 +03:00
< / div >
2020-11-28 22:44:39 +03:00
< div class = "flex justify-center space-x-2 mt-12" >
2020-11-28 22:50:35 +03:00
< img alt = "License badge" src = "https://badges.fw-web.space/github/license/muety/wakapi?color=%232F855A&style=flat-square" >
< img alt = "Go version badge" src = "https://badges.fw-web.space/github/go-mod/go-version/muety/wakapi?color=%232F855A&style=flat-square" >
< img alt = "Wakapi coding time badge" src = "https://badges.fw-web.space/endpoint?color=%232F855A&style=flat-square&label=wakapi&url=https://wakapi.dev/api/compat/shields/v1/n1try/interval:any/project:wakapi" >
2020-11-28 22:44:39 +03:00
< / div >
2020-05-24 14:41:19 +03:00
< / div >
< / main >
2020-02-20 16:28:55 +03:00
2020-05-24 14:41:19 +03:00
{{ template "footer.tpl.html" . }}
2020-02-20 16:28:55 +03:00
2020-05-24 14:41:19 +03:00
{{ template "foot.tpl.html" . }}
2020-02-20 16:28:55 +03:00
< / body >
< / html >