Skip to content

Commit

Permalink
Merge pull request #12 from cmgriffing/feat/github-link-icon
Browse files Browse the repository at this point in the history
feat: add github icon and link to header
  • Loading branch information
cmgriffing authored Oct 19, 2024
2 parents f9442d7 + 07b2436 commit 795d024
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion playgrounds/app/src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import { useLocation } from '@solidjs/router'
import { Button } from './ui/button'
import { OcMarkgithub2 } from 'solid-icons/oc'

export default function Nav() {
return (
<header class="flex flex-col">
<nav class="flex flex-row gap-2 justify-end p-4">
<Button>Login/Signup</Button>
<a href="https://github.com/cmgriffing/lithium" target="_blank" rel="noreferrer">
<OcMarkgithub2 size={32} />
</a>
{/* <Button>Login/Signup</Button> */}
</nav>
<div class="flex flex-col items-center justify-center p-4">
<h1 class="text-6xl font-bold">Lithium</h1>
Expand Down

0 comments on commit 795d024

Please sign in to comment.