Add remaining UI assets and configuration files

- Add assets/ directory with icons and images
- Add eslint.config.js for code linting
- Add package-lock.json for dependency locking
- Add public/ directory with static assets
- Add ui/ directory with React components

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-08-09 13:19:39 +10:00
parent 235ca68ee5
commit 0acf136246
22 changed files with 7753 additions and 0 deletions

13
ui/index.html Normal file
View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>