summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-04-14 21:14:06 +0200
committerewy <ewy0@protonmail.com>2026-04-14 21:14:06 +0200
commit67c8604994c3fc0771ab67206399da879248c498 (patch)
treefb6c33ddb40c5f277aa02479f25f5ddddd9e0bb7
parent67d6a477ac3b47e04d9462d67f2eab6a7ae34353 (diff)
update idx
-rw-r--r--web/index.html80
1 files changed, 77 insertions, 3 deletions
diff --git a/web/index.html b/web/index.html
index f972c3d..5a52f01 100644
--- a/web/index.html
+++ b/web/index.html
@@ -5,13 +5,87 @@
<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;
+ }
+
+ </style>
<title>pik - file based task runner</title>
</head>
<body>
<header>
- Test!
- 123
+ <h1>pik</h1>
+ <span>file-based task runner</span>
</header>
-
+<main>
+ <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> \ No newline at end of file