Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion visual-tree-search-app/components/ControlPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const ControlPanel: React.FC<ControlPanelProps> = ({
<div className="bg-white dark:bg-slate-800 shadow-sm border-b sticky top-0 z-10">
<div className="py-3 px-4 max-w-full">
<div className="flex justify-between items-center">
<h1 className="text-2xl font-bold text-sky-950 dark:text-sky-100">Visual Tree Search</h1>
<h1 className="text-2xl font-bold text-sky-950 dark:text-sky-100">Visual Tree Search: Simple Search (BFS/DFS)</h1>

<div className="flex gap-2">
<Button
Expand Down
2 changes: 1 addition & 1 deletion visual-tree-search-app/components/ControlPanelLATS.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const ControlPanelLATS: React.FC<ControlPanelProps> = ({
<div className="bg-white dark:bg-slate-800 shadow-sm border-b sticky top-0 z-10">
<div className="py-3 px-4 max-w-full">
<div className="flex justify-between items-center">
<h1 className="text-2xl font-bold text-sky-950 dark:text-sky-100">Visual Tree Search</h1>
<h1 className="text-2xl font-bold text-sky-950 dark:text-sky-100">Visual Tree Search: LATS</h1>

<div className="flex gap-2">
<Button
Expand Down
Loading