File tree Expand file tree Collapse file tree 3 files changed +43
-7
lines changed
public/server-logos/colour Expand file tree Collapse file tree 3 files changed +43
-7
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const caddyUrl = (() => {
2525
2626 <div class =" border-b-1 border-border-grey cursor-pointer flex gap-1 items-center justify-between px-1 py-3 w-60 z-20 md:px-2" >
2727 <div class =" flex gap-1 items-center" >
28- <img class =" relative w-5 z-10 md:w-7" height =" 35" width =" 35" src =" /server-logos/colour/govai.png " alt ={ productName .toString () } />
28+ <img class =" relative w-5 z-10 md:w-7" height =" 35" width =" 35" src =" /server-logos/colour/labs.svg " alt ={ productName .toString () } />
2929 <span class =" font-bold text-xl" aria-hidden =" true" >{ productName } </span >
3030 </div >
3131 <button class =" sidepanel__toggle absolute bg-background-grey flex h-6 items-center justify-center right-[-3px] transition-transform w-6 aria-pressed:right-0 aria-pressed:rotate-180 [.ready>&]:motion-safe:duration-500 focus:outline-transparent focus-visible:outline-pink" id =" sidepanel__toggle" aria-pressed =" false" >
Original file line number Diff line number Diff line change 11---
22import Layout from ' ../layouts/Layout.astro' ;
33import LitWrapper from ' ../components/lit-wrapper.astro' ;
4- import LogoAnimation from ' ../components/LogoAnimation.astro' ;
54import type { Message } from ' ../logic/ai3.ts' ;
65import { getMcpServers } from ' ../logic/get-servers.ts' ;
76import { getChat } from ' ../logic/database' ;
@@ -37,10 +36,7 @@ const singleServer = mcpServers.find((server) => server.name.toLowerCase() === s
3736 <div class =" pt-7 text-center" >
3837 <span class =" bg-pink flex h-16 items-center justify-center mx-auto relative rounded-full text-white text-3xl w-16" aria-hidden =" true" >
3938 <span >{ singleServer ?.name [0 ].toUpperCase () } </span >
40- <img class =" absolute inset-0 mx-auto" src ={ ' /server-logos/colour/' + (singleServer ?.name .toLowerCase ().replaceAll (' ' , ' _' ) || ' govai' ) + ' .png' } alt =" " />
41- { ! singleServer &&
42- <LogoAnimation ></LogoAnimation >
43- }
39+ <img class =" absolute inset-0 mx-auto" src ={ ' /server-logos/colour/labs.svg' } alt =" " />
4440 </span >
4541 <h1 class =" font-bold mx-auto pt-2 text-5xl" >Welcome to <span class =" text-pink" >{ singleServer ? singleServer .name : ' The Lab' } </span ></h1 >
4642 <p class =" govuk-body mb-7! mt-3!" set:html ={ singleServer ? singleServer .description : ' Test, compare and explore AI models in one place' } ></p >
@@ -256,7 +252,7 @@ const singleServer = mcpServers.find((server) => server.name.toLowerCase() === s
256252 position: relative;
257253 }
258254 .message-box--llm::before {
259- background: url('/server-logos/colour/govai.png ') no-repeat center/contain;
255+ background: url('/server-logos/colour/labs.svg ') no-repeat center/contain;
260256 border-radius: 100%;
261257 content: '';
262258 height: 2rem;
You can’t perform that action at this time.
0 commit comments