mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-04 22:32:12 +03:00
Task 01 - i18n:
- Synced 2,788 missing keys across 30 language files (all now at 100%)
- Added 6 new agents namespace keys for OpenCode Integration
- i18n-ified agents page OpenCode section (was hardcoded English)
- Added scanning progress text during agents page loading
Task 02 - Provider Icons:
- Added 16 missing provider icons:
- 3 copied from existing (alibaba, kimi-coding-apikey, bailian-coding-plan)
- 2 downloaded (huggingface, deepgram)
- 11 created as SVG (comfyui, sdwebui, vertex, cartesia, zai,
synthetic, opencode-go/zen, puter, apikey, oauth)
- Total: 86 icon files covering all 69 providers
52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
|
|
<html>
|
|
<head>
|
|
<title>404</title>
|
|
<style>
|
|
@font-face {
|
|
font-family: 'colfax-web';
|
|
font-display: swap;
|
|
src: url('https://www.datocms.com/fonts/colfax-web-regular.woff2') format('woff2'), url('https://www.datocms.com/fonts/colfax-web-regular.woff') format('woff');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'colfax-web';
|
|
font-display: swap;
|
|
font-weight: 700;
|
|
src: url('https://www.datocms.com/fonts/colfax-web-bold.woff2') format('woff2'), url('https://www.datocms.com/fonts/colfax-web-bold.woff') format('woff');
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
box-sizing: border-box;
|
|
font-family: colfax;
|
|
display: grid;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
text-align: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 30px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 50px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>404</h1>
|
|
<p>Not Found</p>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|