Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
add links to explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
kevoconnell committed Jul 2, 2024
1 parent f02da66 commit 6538af2
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export default function RootLayout({
<body className="relative h-screen min-h-screen">
<div className="flex flex-col min-h-screen">
<Providers>
<div className="sticky top-0 z-10 w-full flex flex-col sm:flex-row justify-between bg-white p-4">
<div className="flex-1 min-w-32 mx-auto">
<div className="sticky top-0 z-10 w-full flex flex-col sm:flex-row justify-between items-center bg-white p-4 px-6">
<div className="min-w-32">
<Link
className="block flex-shrink-0"
href="https://www.neynar.com"
Expand All @@ -45,11 +45,33 @@ export default function RootLayout({

<div className="flex flex-col items-center gap-2 sm:max-w-[350px] w-full">
<Link href="/" className="text-black font-bold">
<p className="text-md md:text-">Farcaster Explorer</p>
<p className="text-md">Farcaster Explorer</p>
</Link>
<Search />
</div>
<div className="flex-1"></div>
<div className="flex items-center justify-end space-x-4">
<Link
target="_blank"
className="hover:text-purple-900"
href={'https://blog.neynar.com/'}
>
Blog
</Link>
<Link
target="_blank"
className="hover:text-purple-900"
href={'https://github.com/neynarxyz/explorer'}
>
Github
</Link>
<Link
target="_blank"
className="hover:text-purple-900"
href={'https://docs.neynar.com/'}
>
Docs
</Link>
</div>
</div>

<div className="flex-auto w-full p-4 md:p-8 bg-gray-50">
Expand Down

0 comments on commit 6538af2

Please sign in to comment.