feat: initial commit

This commit is contained in:
2026-05-20 23:26:11 +01:00
commit 5b18c7c975
28 changed files with 5141 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/png"
href="https://assets.jdbnet.co.uk/projects/s3.png"
/>
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="theme-color" content="#0f1115" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Sans:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<title>S3 Client</title>
</head>
<body class="app-shell bg-surface text-slate-200 antialiased">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>