Rename to Chat LangGraph

This commit is contained in:
Tat Dat Duong
2025-03-07 14:58:55 +01:00
parent cb27e5eb4b
commit 2e7587cb96
4 changed files with 8 additions and 8 deletions

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> <link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LangGraph Chat</title> <title>Chat LangGraph</title>
<link href="/src/styles.css" rel="stylesheet" /> <link href="/src/styles.css" rel="stylesheet" />
</head> </head>
<body> <body>

View File

@@ -97,7 +97,7 @@ export default function ThreadHistory() {
variant="ghost" variant="ghost"
onClick={() => setChatHistoryOpen((p) => !p)} onClick={() => setChatHistoryOpen((p) => !p)}
> >
<PanelRightOpen /> <PanelRightOpen className="size-5" />
</Button> </Button>
<h1 className="text-xl font-semibold tracking-tight"> <h1 className="text-xl font-semibold tracking-tight">
Thread History Thread History

View File

@@ -218,7 +218,7 @@ export function Thread() {
variant="ghost" variant="ghost"
onClick={() => setChatHistoryOpen((p) => !p)} onClick={() => setChatHistoryOpen((p) => !p)}
> >
<PanelRightOpen /> <PanelRightOpen className="size-5" />
</Button> </Button>
)} )}
</div> </div>
@@ -233,7 +233,7 @@ export function Thread() {
variant="ghost" variant="ghost"
onClick={() => setChatHistoryOpen((p) => !p)} onClick={() => setChatHistoryOpen((p) => !p)}
> >
<PanelRightOpen /> <PanelRightOpen className="size-5" />
</Button> </Button>
)} )}
</div> </div>
@@ -251,7 +251,7 @@ export function Thread() {
> >
<LangGraphLogoSVG width={32} height={32} /> <LangGraphLogoSVG width={32} height={32} />
<span className="text-xl font-semibold tracking-tight"> <span className="text-xl font-semibold tracking-tight">
LangGraph Chat Chat LangGraph
</span> </span>
</motion.button> </motion.button>
</div> </div>
@@ -309,7 +309,7 @@ export function Thread() {
<div className="flex gap-3 items-center"> <div className="flex gap-3 items-center">
<LangGraphLogoSVG className="flex-shrink-0 h-8" /> <LangGraphLogoSVG className="flex-shrink-0 h-8" />
<h1 className="text-2xl font-semibold tracking-tight"> <h1 className="text-2xl font-semibold tracking-tight">
LangGraph Chat Chat LangGraph
</h1> </h1>
</div> </div>
)} )}

View File

@@ -94,11 +94,11 @@ export const StreamProvider: React.FC<{ children: ReactNode }> = ({
<div className="flex items-start flex-col gap-2"> <div className="flex items-start flex-col gap-2">
<LangGraphLogoSVG className="h-7" /> <LangGraphLogoSVG className="h-7" />
<h1 className="text-xl font-semibold tracking-tight"> <h1 className="text-xl font-semibold tracking-tight">
LangGraph Chat Chat LangGraph
</h1> </h1>
</div> </div>
<p className="text-muted-foreground"> <p className="text-muted-foreground">
Welcome to LangGraph Chat! Before you get started, you need to Welcome to Chat LangGraph! Before you get started, you need to
enter the URL of the deployment and the assistant / graph ID. enter the URL of the deployment and the assistant / graph ID.
</p> </p>
</div> </div>