update logo

This commit is contained in:
mlogclub
2026-04-26 20:22:09 +08:00
parent 8dff6450b2
commit 603b8ff593
4 changed files with 63 additions and 6 deletions
+8 -4
View File
@@ -1,5 +1,5 @@
import { LoginForm } from "@/components/login-form" import { LoginForm } from "@/components/login-form"
import { BotMessageSquareIcon, ShieldCheckIcon } from "lucide-react" import { ShieldCheckIcon } from "lucide-react"
import Link from "next/link" import Link from "next/link"
import { Suspense } from "react" import { Suspense } from "react"
@@ -48,9 +48,13 @@ export default function LoginPage() {
<div className="flex flex-col gap-4 p-6 md:p-10"> <div className="flex flex-col gap-4 p-6 md:p-10">
<div className="flex justify-center gap-2 md:justify-start"> <div className="flex justify-center gap-2 md:justify-start">
<Link href="/dashboard/login" className="flex items-center gap-2 font-medium"> <Link href="/dashboard/login" className="flex items-center gap-2 font-medium">
<div className="flex size-6 items-center justify-center rounded-md bg-primary text-primary-foreground"> <img
<BotMessageSquareIcon className="size-4" /> src="/images/logo.svg"
</div> alt="CS Agent"
width="32"
height="32"
className="size-7 shrink-0 object-contain"
/>
CS Agent CS Agent
</Link> </Link>
</div> </div>
+7 -2
View File
@@ -21,7 +21,6 @@ import {
SidebarMenuButton, SidebarMenuButton,
SidebarMenuItem, SidebarMenuItem,
} from "@/components/ui/sidebar" } from "@/components/ui/sidebar"
import { BotMessageSquareIcon } from "lucide-react"
export function AppSidebar({ ...props }: ComponentProps<typeof Sidebar>) { export function AppSidebar({ ...props }: ComponentProps<typeof Sidebar>) {
const { session } = useAuth() const { session } = useAuth()
@@ -48,7 +47,13 @@ export function AppSidebar({ ...props }: ComponentProps<typeof Sidebar>) {
className="data-[slot=sidebar-menu-button]:p-1.5!" className="data-[slot=sidebar-menu-button]:p-1.5!"
render={<Link href="/dashboard" />} render={<Link href="/dashboard" />}
> >
<BotMessageSquareIcon className="size-5!" /> <img
src="/images/logo.svg"
alt="贝壳AGENT"
width="32"
height="32"
className="size-7 shrink-0 object-contain"
/>
<span className="text-base font-semibold">AGENT</span> <span className="text-base font-semibold">AGENT</span>
</SidebarMenuButton> </SidebarMenuButton>
</SidebarMenuItem> </SidebarMenuItem>
Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 56 KiB