summaryrefslogtreecommitdiff
path: root/web/index.html
blob: e7591b8ab741a068b10e755e95b8c11c24a33083 (plain)
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 lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <link rel="icon" href="data:,"/>
    <meta content="pik - file-based task runner" property="og:title" />
    <meta content="https://mepik.dev" property="og:url" />

    <meta content="file-based task runner" property="og:description" />

    <meta content="#f2cae2" data-react-helmet="true" name="theme-color" />
    <style>
        @media (prefers-color-scheme: dark) {
            html {
                background-color: #3e3b37;
                color: rgb(222, 213, 200);
            }
        }

        body {
            max-width: 44em;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 32px;

            & p {
                padding: 4px 0;
            }
        }

        main {
            min-height: 105vh;
            display: flex;
            gap: 16px;
            flex-direction: column;
            align-items: center;
        }

        header {
            display: flex;
            align-items: baseline;
            gap: 16px;
            justify-content: space-between;

            & a {
                text-decoration: none;
            }

            & h1 {
                font-family: monospace
            }
        }

        a {
            color: #f2cae2;
        }

        section {
            & blockquote {
                text-align: center;
            }
            & img {
                border: solid black 2px;
            }
        }

    </style>
    <title>pik - file based task runner</title>
</head>
<body>
<header>
    <h1>pik</h1>
    <span>file-based task runner</span>
</header>
<main>
    <section>
        <figure>
            <img src="https://uwu.ewy.one/satty-20260414-21:30:58.png" />
            <blockquote>fig. 1: the pik tui</blockquote>
        </figure>
    </section>
    <section>
        <figure>
            <img src="https://uwu.ewy.one/satty-20260414-21:39:11.png" />
            <blockquote>fig. 2: the pik experience</blockquote>
        </figure>
    </section>
    <p>
        <a href="https://git.ewy.one/">Repository</a>
    </p>
    <p>
        <a href="https://github.com/ewy1/pik">Github mirror</a>
    </p>
</main>
<footer>
    THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN
    WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER
    EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
    PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH THE CUSTOMER. SHOULD
    THE SOFTWARE PROVE DEFECTIVE, THE CUSTOMER ASSUMES THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.
</footer>
</body>
</html>