Skip to content

Commit

Permalink
renamed to lollms + logo
Browse files Browse the repository at this point in the history
  • Loading branch information
andzejsp committed Jun 17, 2023
1 parent 29a3e16 commit 9f3635b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
Binary file modified web/public/favicon.ico
Binary file not shown.
Binary file added web/src/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions web/src/components/TopBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
<!-- LOGO -->
<RouterLink :to="{ name: 'discussions' }">
<div class="flex items-center gap-3 flex-1">
<img class="w-12 hover:scale-95 duration-150 " title="lollms-webui" src="@/assets/logo.svg" alt="Logo">
<p class="text-2xl ">Lord of Large Language Models: One tool to rule them all</p>
<img class="w-12 hover:scale-95 duration-150 " title="LoLLMS WebUI" src="@/assets/logo.png" alt="Logo">
<div class="flex flex-col">
<p class="text-2xl ">Lord of Large Language Models</p>
<p class="text-gray-400 ">One tool to rule them all</p>

</div>

</div>
</RouterLink>
Expand Down
6 changes: 3 additions & 3 deletions web/src/views/DiscussionsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -840,14 +840,14 @@ export default {
if (item) {
if (item.id) {
const realTitle = item.title ? item.title === "untitled" ? "New discussion" : item.title : "New discussion"
document.title = 'GPT4ALL - WEBUI - ' + realTitle
document.title = 'LoLLMS WebUI - ' + realTitle
} else {
const title = item || "Welcome"
document.title = 'GPT4ALL - WEBUI - ' + title
document.title = 'LoLLMS WebUI - ' + title
}
} else {
const title = item || "Welcome"
document.title = 'GPT4ALL - WEBUI - ' + title
document.title = 'LoLLMS WebUI - ' + title
}
},
Expand Down

0 comments on commit 9f3635b

Please sign in to comment.