gear-orders/web/templates/dashboard.html

22 lines
515 B
HTML
Raw Permalink Normal View History

2026-01-09 22:56:54 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2026-03-08 23:41:40 +00:00
<link rel="icon" type="image/png" href="/static/favicon-96x96.png" sizes="96x96" />
<link rel="shortcut icon" href="/static/favicon.ico" />
2026-01-30 21:56:18 +00:00
<meta name="csrf-token" content="{{ csrf_token() }}">
2026-01-09 22:56:54 +00:00
2026-01-09 23:45:03 +00:00
<title>Gear Orders Bot</title>
2026-01-09 22:56:54 +00:00
2026-03-07 16:44:09 +00:00
{{ vite_entry('src/main.tsx') }}
2026-03-07 04:40:45 +00:00
2026-01-09 22:56:54 +00:00
</head>
2026-01-10 03:44:55 +00:00
<body>
<div id="root"></div>
</body>
2026-01-09 22:56:54 +00:00
</html>