refactor: upload temp
All checks were successful
/ deploy_site (push) Successful in 1m56s

This commit is contained in:
2024-10-26 17:57:34 +09:00
parent aa4cfabe11
commit beba067305
34 changed files with 3030 additions and 307 deletions

View File

@ -1,53 +1,18 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/node_modules/normalize.css/normalize.css">
<link rel="shortcut icon" href="/favicon.webp" type="image/webp">
<link rel="stylesheet" href="/node_modules/@fontsource-variable/jetbrains-mono/index.css">
<title>THE PTOOLS</title>
<meta charset="UTF-8" />
<link rel="icon" type="image/webp" href="/favicon.webp" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The PTOOLS</title>
</head>
<body>
<img src="/favicon.webp">
<button>The PTOOLS</button>
<span>This website is currently disabled :)</span>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<style>
:root {
background-color: #212121;
}
* {
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
user-select: none;
font-family: 'JetBrains Mono Variable', monospace;
color: white;
}
body {
display: flex;
flex-direction: column;
gap: 10px;
align-items: center;
justify-content: center;
}
button {
border: none;
padding: 6px 10px;
border-radius: 4px;
cursor: pointer;
background-color: #ff1696;
color: white;
margin-right: 6px;
}
</style>
</body>
</html>