Skip to content

Commit

Permalink
chore: add orbiter bridge (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
tadejpodrekar authored Oct 30, 2024
1 parent d3bef1e commit b9991d4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions apps/frontend/src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,27 @@ export const Navbar = ({ mobile = false }: { mobile?: boolean }) => {
</div>
</div>
</DropdownMenuItem>
<DropdownMenuItem>
<div
onMouseDown={() => {
trackExternalPageView(
'https://www.orbiter.finance/?source=Ethereum&dest=Fuel&token=ETH'
);
window.open(
'https://www.orbiter.finance/?source=Ethereum&dest=Fuel&token=ETH',
'_blank'
);
setOpenBridge(false);
}}
rel="noreferrer"
className="w-full"
>
<div className="w-full flex items-center justify-between text-md font-medium text-lavender py-1 px-0.5 gap-x-2 cursor-pointer hover:underline">
Orbiter Bridge
<ExternalLink className="w-4 h-4" />
</div>
</div>
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
<DropdownMenu open={openDex} onOpenChange={setOpenDex}>
Expand Down

0 comments on commit b9991d4

Please sign in to comment.