Skip to content

Commit

Permalink
add banner and logo
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCaso committed Jan 31, 2024
1 parent 2b15ecc commit abb2b97
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
Binary file added frontend/public/images/fairpetuals-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/images/fairpetuals-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 14 additions & 8 deletions frontend/src/app/components/navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
import Link from "next/link"
import { FC } from "react"
import { ConnectButton } from "../../components/web3/connect-button"
import Image from 'next/image'
import Link from 'next/link'
import { FC } from 'react'

import Banner from 'public/images/fairpetuals-banner.png'
import Logo from 'public/images/fairpetuals-logo.png'

import { ConnectButton } from '../../components/web3/connect-button'

export const Navbar: FC = () => (
<div className="flex justify-between px-8 py-4 items-center">
<div className="flex gap-14 items-center">
<div className="font-bold text-xl">
Fairpetuals
<div className="flex items-center justify-between px-8 py-4">
<div className="flex items-center gap-14">
<div className="flex items-center gap-2 text-xl font-bold">
<Image src={Logo} width={45} height={45} className="rounded-full" alt="Asset Icon" />
<Image src={Banner} width={200} height={100} alt="Banner" />
</div>
<div className="flex gap-6 items-center">
<div className="flex items-center gap-6">
<Link href="/">Trade</Link>
<Link href="/earn">Earn</Link>
</div>
Expand Down

0 comments on commit abb2b97

Please sign in to comment.