From 2b1b8e4539cc246ddd9e88afff3f5112fe384ba9 Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Fri, 13 Feb 2026 19:13:57 -0300 Subject: [PATCH] chore(ui): rebrand to OmniRoute MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Sidebar: 'Endpoint Proxy' → 'OmniRoute' - Page title: 'OmniRoute — AI Gateway for Multi-Provider LLMs' - Description updated across layout and config --- src/app/layout.js | 4 ++-- src/shared/constants/config.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/layout.js b/src/app/layout.js index 3918ee72b9..9f12dfe268 100644 --- a/src/app/layout.js +++ b/src/app/layout.js @@ -9,9 +9,9 @@ const inter = Inter({ }); export const metadata = { - title: "OmniRoute - AI Infrastructure Management", + title: "OmniRoute — AI Gateway for Multi-Provider LLMs", description: - "One endpoint for all your AI providers. Manage keys, monitor usage, and scale effortlessly.", + "OmniRoute is an AI gateway for multi-provider LLMs. One endpoint for all your AI providers.", icons: { icon: "/favicon.svg", }, diff --git a/src/shared/constants/config.js b/src/shared/constants/config.js index c5503d37ad..e5553cb2d3 100644 --- a/src/shared/constants/config.js +++ b/src/shared/constants/config.js @@ -2,8 +2,8 @@ import pkg from "../../../package.json" with { type: "json" }; // App configuration export const APP_CONFIG = { - name: "Endpoint Proxy", - description: "AI Infrastructure Management", + name: "OmniRoute", + description: "AI Gateway for Multi-Provider LLMs", version: pkg.version, };