Make the logo larger

This commit is contained in:
Tat Dat Duong
2025-03-04 15:43:35 +01:00
parent 992622ae83
commit 702147d3a8
2 changed files with 22 additions and 18 deletions

View File

@@ -1,4 +1,12 @@
export function LangGraphLogoSVG({ width = 20, height = 20 }) {
export function LangGraphLogoSVG({
className,
width,
height,
}: {
width?: number;
height?: number;
className?: string;
}) {
return (
<svg
width={width}
@@ -6,6 +14,7 @@ export function LangGraphLogoSVG({ width = 20, height = 20 }) {
viewBox="0 0 98 51"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
fillRule="evenodd"

View File

@@ -18,15 +18,6 @@ import { SquarePen } from "lucide-react";
import { StringParam, useQueryParam } from "use-query-params";
import { StickToBottom, useStickToBottomContext } from "use-stick-to-bottom";
function Title({ className }: { className?: string }) {
return (
<div className={cn("flex gap-2 items-center", className)}>
<LangGraphLogoSVG width={32} height={32} />
<h1 className="text-xl font-medium">LangGraph Chat</h1>
</div>
);
}
function NewThread() {
const [threadId, setThreadId] = useQueryParam("threadId", StringParam);
if (!threadId) return null;
@@ -144,7 +135,11 @@ export function Thread() {
>
{chatStarted && (
<div className="flex items-center justify-between gap-3 p-2 pl-4 z-10 relative">
<Title />
<div className="flex gap-2 items-center">
<LangGraphLogoSVG width={32} height={32} />
<h1 className="text-xl font-medium">LangGraph Chat</h1>
</div>
<NewThread />
<div className="absolute inset-x-0 top-full h-5 bg-gradient-to-b from-background to-background/0" />
@@ -192,13 +187,13 @@ export function Thread() {
}
footer={
<div className="sticky flex flex-col items-center gap-8 bottom-8 px-4">
{!chatStarted && <Title />}
<div
className={cn(
"bg-background rounded-2xl border shadow-md mx-auto w-full max-w-4xl",
// chatStarted && "fixed bottom-6 inset-x-0",
{!chatStarted && (
<div className="flex gap-3 items-center">
<LangGraphLogoSVG className="flex-shrink-0 h-8" />
<h1 className="text-2xl font-medium">LangGraph Chat</h1>
</div>
)}
>
<div className="bg-background rounded-2xl border shadow-md mx-auto w-full max-w-4xl">
<form
onSubmit={handleSubmit}
className="grid grid-rows-[1fr_auto] gap-2 max-w-4xl mx-auto"