This commit is contained in:
Данил 2024-09-21 20:42:44 +03:00
commit 4e4f913477
12 changed files with 811 additions and 0 deletions

15
src/web/errors/404.html Normal file
View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kekkai</title>
<meta name="author" content="Redume">
<meta name="description" content="API providing historical currency data">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
</body>
</html>

23
src/web/page/index.html Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kekkai</title>
<meta name="author" content="Redume">
<meta name="description" content="API providing historical currency data">
<meta name="keywords" content="kekkai, currency, exchange rate, api exchange rate, cryptocurrency api rate, fiat api rate">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="/static/styles/index.css">
</head>
<body>
<div class="banner">
<div class="banner-img">
<img src="/static/assets/kekkai.svg" alt="Kekkai title">
</div>
<p class="desc">The first free Open-Source Tool for Saving Historical Currency data</p>
</div>
</body>
</html>

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.6 KiB

View file

@ -0,0 +1,29 @@
body {
background: #4F5574;
color: white;
font-family: "Gotham Pro";
font-weight: bold;
}
.banner {
background: rgba(0, 0, 0, 0.39);
border-radius: 3vh;
display: grid
}
.banner-img {
display: block;
text-align: center;
}
.banner-img img {
width: 20%;
margin: 1.5%;
}
.desc {
width: 50%;
text-align: center;
margin: 1% auto;
font-size: 2.3vh;
}