Skip to content
Open
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
Binary file added apps/synapse-playground/public/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions apps/synapse-playground/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { ConnectSection } from './components/connect-section.tsx'
import { PaymentsAccount } from './components/payments-account.tsx'
import { Services } from './components/services.tsx'
import { WalletMenu } from './components/wallet-menu.tsx'
import github from '../public/github.png'

export function App() {
const { isConnected } = useAccount()
Expand All @@ -28,6 +29,16 @@ export function App() {
<div className="flex flex-row gap-2 items-center">
{isConnected && <WalletMenu />}
<NetworkSelector />
<a
href="https://github.com/FilOzone/synapse-sdk"
>
<img
src={github}
alt="GitHub Repository"
loading="lazy"
className="w-10 h-10 rounded-full"
/>
</a>
</div>
</nav>
</header>
Expand Down