diff --git a/ui/admin/app/components/agent/FirstModelProviderBanner.tsx b/ui/admin/app/components/agent/FirstModelProviderBanner.tsx index e3a70dfb..26cdae82 100644 --- a/ui/admin/app/components/agent/FirstModelProviderBanner.tsx +++ b/ui/admin/app/components/agent/FirstModelProviderBanner.tsx @@ -2,7 +2,7 @@ import { Link } from "@remix-run/react"; import { $path } from "remix-routes"; import { TypographyH3, TypographyP } from "~/components/Typography"; -import { AcornLogo } from "~/components/branding/AcornLogo"; +import { ObotLogo } from "~/components/branding/ObotLogo"; import { Button } from "~/components/ui/button"; export function FirstModelProviderBanner() { @@ -10,7 +10,7 @@ export function FirstModelProviderBanner() {
- Acorn Logo diff --git a/ui/admin/app/components/errors/Error.tsx b/ui/admin/app/components/errors/Error.tsx index 7814dc8f..da9fdd43 100644 --- a/ui/admin/app/components/errors/Error.tsx +++ b/ui/admin/app/components/errors/Error.tsx @@ -1,6 +1,6 @@ import { ArrowLeft, HomeIcon } from "lucide-react"; -import { AcornLogo } from "~/components/branding/AcornLogo"; +import { ObotLogo } from "~/components/branding/ObotLogo"; import { Button } from "~/components/ui/button"; import { Card, @@ -17,7 +17,7 @@ export function Error({ error }: { error: Error }) {
- + Oops! An error occurred diff --git a/ui/admin/app/components/errors/RouteError.tsx b/ui/admin/app/components/errors/RouteError.tsx index 823fd687..2e27f69a 100644 --- a/ui/admin/app/components/errors/RouteError.tsx +++ b/ui/admin/app/components/errors/RouteError.tsx @@ -1,6 +1,6 @@ import { ErrorResponse } from "@remix-run/react"; -import { AcornLogo } from "~/components/branding/AcornLogo"; +import { ObotLogo } from "~/components/branding/ObotLogo"; import { Button } from "~/components/ui/button"; import { Card, @@ -16,7 +16,7 @@ export function RouteError({ error }: { error: ErrorResponse }) {
- + Oops! {error.status} diff --git a/ui/admin/app/components/errors/Unauthorized.tsx b/ui/admin/app/components/errors/Unauthorized.tsx index 812662e5..d8cf6c75 100644 --- a/ui/admin/app/components/errors/Unauthorized.tsx +++ b/ui/admin/app/components/errors/Unauthorized.tsx @@ -1,4 +1,4 @@ -import { AcornLogo } from "~/components/branding/AcornLogo"; +import { ObotLogo } from "~/components/branding/ObotLogo"; import { Button } from "~/components/ui/button"; import { Card, @@ -13,7 +13,7 @@ export function Unauthorized() {
- + diff --git a/ui/admin/app/components/oauth-apps/DeleteOAuthApp.tsx b/ui/admin/app/components/oauth-apps/DeleteOAuthApp.tsx index 0547703c..85f3e99c 100644 --- a/ui/admin/app/components/oauth-apps/DeleteOAuthApp.tsx +++ b/ui/admin/app/components/oauth-apps/DeleteOAuthApp.tsx @@ -37,8 +37,8 @@ export function DeleteOAuthApp({
) : null} - Reset {spec.displayName} OAuth to use Acorn Gateway + Reset {spec.displayName} OAuth to use Obot Gateway diff --git a/ui/admin/app/components/oauth-apps/OAuthAppDetail.tsx b/ui/admin/app/components/oauth-apps/OAuthAppDetail.tsx index f3f9e4bf..0d78baaf 100644 --- a/ui/admin/app/components/oauth-apps/OAuthAppDetail.tsx +++ b/ui/admin/app/components/oauth-apps/OAuthAppDetail.tsx @@ -98,7 +98,7 @@ export function OAuthAppDetail({ - Acorn will now use your custom {spec.displayName} OAuth + Obot will now use your custom {spec.displayName} OAuth app to authenticate users. @@ -153,14 +153,14 @@ function Content({ return (
- Acorn only supports one custom {spec.displayName} OAuth. If you + Obot only supports one custom {spec.displayName} OAuth. If you need to use a different configuration, you can replace the current configuration with a new one. - When {spec.displayName} OAuth is used, Acorn will use your - custom OAuth app. + When {spec.displayName} OAuth is used, Obot will use your custom + OAuth app.
diff --git a/ui/admin/app/components/oauth-apps/OAuthAppTile.tsx b/ui/admin/app/components/oauth-apps/OAuthAppTile.tsx index c4f50be4..df2d5256 100644 --- a/ui/admin/app/components/oauth-apps/OAuthAppTile.tsx +++ b/ui/admin/app/components/oauth-apps/OAuthAppTile.tsx @@ -65,7 +65,7 @@ export function OAuthAppTile({ OAuth for {displayName} is handled by default by - the Acorn Gateway + the Obot Gateway )} diff --git a/ui/admin/app/components/sidebar/Sidebar.tsx b/ui/admin/app/components/sidebar/Sidebar.tsx index 8732a33c..1d7c0d5e 100644 --- a/ui/admin/app/components/sidebar/Sidebar.tsx +++ b/ui/admin/app/components/sidebar/Sidebar.tsx @@ -14,7 +14,7 @@ import { $path } from "remix-routes"; import { cn } from "~/lib/utils"; -import { AcornLogo } from "~/components/branding/AcornLogo"; +import { ObotLogo } from "~/components/branding/ObotLogo"; import { Button } from "~/components/ui/button"; import { Popover, @@ -89,7 +89,7 @@ export function AppSidebar() { className={cn("h-[60px]", state === "collapsed" ? "" : "px-4")} >
- +
diff --git a/ui/admin/app/components/signin/SignIn.tsx b/ui/admin/app/components/signin/SignIn.tsx index 7a49678c..2d99f1e6 100644 --- a/ui/admin/app/components/signin/SignIn.tsx +++ b/ui/admin/app/components/signin/SignIn.tsx @@ -2,7 +2,7 @@ import { FaGoogle } from "react-icons/fa"; import { cn } from "~/lib/utils"; -import { AcornLogo } from "~/components/branding/AcornLogo"; +import { ObotLogo } from "~/components/branding/ObotLogo"; import { Button } from "~/components/ui/button"; import { Card, @@ -24,7 +24,7 @@ export function SignIn({ className }: SignInProps) { > - + Please sign in using the button below. diff --git a/ui/admin/app/components/webhooks/WebhookConfirmation.tsx b/ui/admin/app/components/webhooks/WebhookConfirmation.tsx index 78f784e6..4c526ff2 100644 --- a/ui/admin/app/components/webhooks/WebhookConfirmation.tsx +++ b/ui/admin/app/components/webhooks/WebhookConfirmation.tsx @@ -49,7 +49,7 @@ export const WebhookConfirmation = ({ - Your webhook has been saved in Acorn. Make sure to copy the + Your webhook has been saved in Obot. Make sure to copy the payload URL and secret to your webhook provider. diff --git a/ui/admin/app/lib/model/oauthApps/providers/microsoft365.ts b/ui/admin/app/lib/model/oauthApps/providers/microsoft365.ts index b463688d..96eda3f4 100644 --- a/ui/admin/app/lib/model/oauthApps/providers/microsoft365.ts +++ b/ui/admin/app/lib/model/oauthApps/providers/microsoft365.ts @@ -147,7 +147,7 @@ If you do not have a multi-tenant application, you can skip this step.\n { type: "markdown", text: ` -- Click **Submit** to finish registering your Application with Acorn.\n +- Click **Submit** to finish registering your Application with Obot.\n `, }, ]; diff --git a/ui/admin/app/routes/_auth.model-providers.tsx b/ui/admin/app/routes/_auth.model-providers.tsx index 8943d781..3ef09fdf 100644 --- a/ui/admin/app/routes/_auth.model-providers.tsx +++ b/ui/admin/app/routes/_auth.model-providers.tsx @@ -77,7 +77,7 @@ export default function ModelProviders() { {configured ? null : ( diff --git a/ui/admin/public/android-chrome-192x192.png b/ui/admin/public/android-chrome-192x192.png index a179dbfb..a1482c29 100644 Binary files a/ui/admin/public/android-chrome-192x192.png and b/ui/admin/public/android-chrome-192x192.png differ diff --git a/ui/admin/public/android-chrome-512x512.png b/ui/admin/public/android-chrome-512x512.png index 5a0a11d6..4b3df4db 100644 Binary files a/ui/admin/public/android-chrome-512x512.png and b/ui/admin/public/android-chrome-512x512.png differ diff --git a/ui/admin/public/apple-touch-icon.png b/ui/admin/public/apple-touch-icon.png index f98ba94c..ee47a472 100644 Binary files a/ui/admin/public/apple-touch-icon.png and b/ui/admin/public/apple-touch-icon.png differ diff --git a/ui/admin/public/favicon-16x16.png b/ui/admin/public/favicon-16x16.png index 815b8401..fb35c3aa 100644 Binary files a/ui/admin/public/favicon-16x16.png and b/ui/admin/public/favicon-16x16.png differ diff --git a/ui/admin/public/favicon-32x32.png b/ui/admin/public/favicon-32x32.png index d446b386..11e617e5 100644 Binary files a/ui/admin/public/favicon-32x32.png and b/ui/admin/public/favicon-32x32.png differ diff --git a/ui/admin/public/favicon.ico b/ui/admin/public/favicon.ico index 20543536..b494158c 100644 Binary files a/ui/admin/public/favicon.ico and b/ui/admin/public/favicon.ico differ diff --git a/ui/admin/public/logo/acorn-icon-blue.svg b/ui/admin/public/logo/acorn-icon-blue.svg deleted file mode 100644 index 845b00dd..00000000 --- a/ui/admin/public/logo/acorn-icon-blue.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/ui/admin/public/logo/acorn-icon-white.svg b/ui/admin/public/logo/acorn-icon-white.svg deleted file mode 100644 index b9af3eed..00000000 --- a/ui/admin/public/logo/acorn-icon-white.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/ui/admin/public/logo/acorn-logo-blue-black-text.svg b/ui/admin/public/logo/acorn-logo-blue-black-text.svg deleted file mode 100644 index ea683225..00000000 --- a/ui/admin/public/logo/acorn-logo-blue-black-text.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - diff --git a/ui/admin/public/logo/acorn-logo-blue-white-text.svg b/ui/admin/public/logo/acorn-logo-blue-white-text.svg deleted file mode 100644 index 6667c360..00000000 --- a/ui/admin/public/logo/acorn-logo-blue-white-text.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - diff --git a/ui/admin/public/logo/obot-icon-blue.svg b/ui/admin/public/logo/obot-icon-blue.svg new file mode 100644 index 00000000..ee021e42 --- /dev/null +++ b/ui/admin/public/logo/obot-icon-blue.svg @@ -0,0 +1,63 @@ + + + + + + otto8 + + + + + + + + + + diff --git a/ui/admin/public/logo/obot-icon-white.svg b/ui/admin/public/logo/obot-icon-white.svg new file mode 100644 index 00000000..4d06457d --- /dev/null +++ b/ui/admin/public/logo/obot-icon-white.svg @@ -0,0 +1,63 @@ + + + + + + otto8 + + + + + + + + + + diff --git a/ui/admin/public/logo/obot-logo-blue-black-text.svg b/ui/admin/public/logo/obot-logo-blue-black-text.svg new file mode 100644 index 00000000..e510f22a --- /dev/null +++ b/ui/admin/public/logo/obot-logo-blue-black-text.svg @@ -0,0 +1,90 @@ + + + + + + otto8 + + + + + + + + + + + + + + + + diff --git a/ui/admin/public/logo/obot-logo-blue-white-text.svg b/ui/admin/public/logo/obot-logo-blue-white-text.svg new file mode 100644 index 00000000..f921cf73 --- /dev/null +++ b/ui/admin/public/logo/obot-logo-blue-white-text.svg @@ -0,0 +1,93 @@ + + + + + + otto8 + + + + + + + + + + + + + + + + diff --git a/ui/user/static/android-chrome-192x192.png b/ui/user/static/android-chrome-192x192.png index a179dbfb..a1482c29 100644 Binary files a/ui/user/static/android-chrome-192x192.png and b/ui/user/static/android-chrome-192x192.png differ diff --git a/ui/user/static/android-chrome-512x512.png b/ui/user/static/android-chrome-512x512.png index 5a0a11d6..4b3df4db 100644 Binary files a/ui/user/static/android-chrome-512x512.png and b/ui/user/static/android-chrome-512x512.png differ diff --git a/ui/user/static/apple-touch-icon.png b/ui/user/static/apple-touch-icon.png index f98ba94c..ee47a472 100644 Binary files a/ui/user/static/apple-touch-icon.png and b/ui/user/static/apple-touch-icon.png differ diff --git a/ui/user/static/favicon-16x16.png b/ui/user/static/favicon-16x16.png index 815b8401..fb35c3aa 100644 Binary files a/ui/user/static/favicon-16x16.png and b/ui/user/static/favicon-16x16.png differ diff --git a/ui/user/static/favicon-32x32.png b/ui/user/static/favicon-32x32.png index d446b386..11e617e5 100644 Binary files a/ui/user/static/favicon-32x32.png and b/ui/user/static/favicon-32x32.png differ diff --git a/ui/user/static/favicon.ico b/ui/user/static/favicon.ico index 20543536..b494158c 100644 Binary files a/ui/user/static/favicon.ico and b/ui/user/static/favicon.ico differ diff --git a/ui/user/static/images/acorn-icon-blue.svg b/ui/user/static/images/acorn-icon-blue.svg deleted file mode 100644 index 845b00dd..00000000 --- a/ui/user/static/images/acorn-icon-blue.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/ui/user/static/images/acorn-icon-white.svg b/ui/user/static/images/acorn-icon-white.svg deleted file mode 100644 index b9af3eed..00000000 --- a/ui/user/static/images/acorn-icon-white.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/ui/user/static/images/acorn-logo-blue-black-text.svg b/ui/user/static/images/acorn-logo-blue-black-text.svg deleted file mode 100644 index ea683225..00000000 --- a/ui/user/static/images/acorn-logo-blue-black-text.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - diff --git a/ui/user/static/images/acorn-logo-blue-white-text.svg b/ui/user/static/images/acorn-logo-blue-white-text.svg deleted file mode 100644 index 6667c360..00000000 --- a/ui/user/static/images/acorn-logo-blue-white-text.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - diff --git a/ui/user/static/images/otto-icon-blue.svg b/ui/user/static/images/otto-icon-blue.svg new file mode 100644 index 00000000..ee021e42 --- /dev/null +++ b/ui/user/static/images/otto-icon-blue.svg @@ -0,0 +1,63 @@ + + + + + + otto8 + + + + + + + + + + diff --git a/ui/user/static/images/otto-icon-white.svg b/ui/user/static/images/otto-icon-white.svg new file mode 100644 index 00000000..4d06457d --- /dev/null +++ b/ui/user/static/images/otto-icon-white.svg @@ -0,0 +1,63 @@ + + + + + + otto8 + + + + + + + + + + diff --git a/ui/user/static/images/otto8-logo-blue-black-text.svg b/ui/user/static/images/otto8-logo-blue-black-text.svg new file mode 100644 index 00000000..ed08cd9e --- /dev/null +++ b/ui/user/static/images/otto8-logo-blue-black-text.svg @@ -0,0 +1,92 @@ + + + + + + otto8 + + + + + + + + + + + + + + + + + diff --git a/ui/user/static/images/otto8-logo-blue-white-text.svg b/ui/user/static/images/otto8-logo-blue-white-text.svg new file mode 100644 index 00000000..e1597933 --- /dev/null +++ b/ui/user/static/images/otto8-logo-blue-white-text.svg @@ -0,0 +1,93 @@ + + + + + + otto8 + + + + + + + + + + + + + + + + +