Skip to content

Commit

Permalink
Add source code link
Browse files Browse the repository at this point in the history
  • Loading branch information
makenowjust committed Jan 2, 2025
1 parent 8c3cdea commit d205909
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { Link2Icon } from "@radix-ui/react-icons";

export function Header() {
return (
<header className="block h-16 border-b border-gray-200 py-4">
<header className="h-16 border-b border-gray-200 py-4 flex items-end">
<h1 className="text-3xl font-bold ml-4 text-primary">
Angluin's L* Algorithm Visualization
<small className="ml-2 font-normal">
Expand All @@ -13,6 +15,11 @@ export function Header() {
</a>
</small>
</h1>
<div className="ml-2">
<a href="https://github.com/makenowjust-labs/lstar-viz">
<Link2Icon className="w-8 h-8 inline-block" />
</a>
</div>
</header>
);
}

0 comments on commit d205909

Please sign in to comment.