Skip to content

Commit

Permalink
Merge pull request #52 from ai16z/feature/trade
Browse files Browse the repository at this point in the history
Feature/trade
  • Loading branch information
awidearray authored Dec 5, 2024
2 parents 0bd450a + 281e93d commit 5f2c2fd
Show file tree
Hide file tree
Showing 8 changed files with 582 additions and 17 deletions.
11 changes: 11 additions & 0 deletions public/logo_solana.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 3 additions & 10 deletions src/components/nav-element/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ import { RiBarChart2Fill } from "react-icons/ri"

interface NavBarProps {
// Add any props if needed
children?: React.ReactNode
}

const NavBar: FC<NavBarProps> = () => {
const NavBar: FC<NavBarProps> = ({ children }) => {
const { data: session } = useSession()
const [searchQuery, setSearchQuery] = useState("")

Expand All @@ -26,15 +27,7 @@ const NavBar: FC<NavBarProps> = () => {
<Link href="https://elizaos.ai/ai16z" className="">
<Image src="/logo.svg" alt="Logo" width={55} height={36} priority />
</Link>

<Link
href="https://discord.com/invite/ai16z"
className="inline-flex items-center rounded-full bg-white/20 px-3.5 py-2 transition-all duration-300 hover:bg-white/30"
>
<span className="text-base font-semibold text-white">
Join Discord
</span>
</Link>
{children}
{/* Search Bar */}
{/* <div className={`${styles.searchContainer} hidden`}>
<form onSubmit={handleSearch}>
Expand Down
Loading

0 comments on commit 5f2c2fd

Please sign in to comment.