fix: make logo point to bolt.fun

This commit is contained in:
MTG2000
2022-02-15 12:28:29 +02:00
parent 14bc97fd2d
commit 1acfe8beb3
2 changed files with 4 additions and 5 deletions

View File

@@ -49,10 +49,9 @@ export default function NavMobile({ onSearch }: Props) {
{/* <div className="w-40 h-40 bg-gray-100 rounded-8 mr-auto overflow-hidden">
<img className="w-full h-full object-cover" src="https://www.figma.com/file/OFowr5RJk9YZCW35KT7D5K/image/07b85d84145942255afd215b3da26dbbf1dd03bd?fuid=772401335362859303" alt="" />
</div> */}
<Link to="/">
<a href="https://bolt.fun/">
<img className='h-32' src={ASSETS.Logo} alt="Bolt fun logo" />
</Link>
</a>
<Button size="sm"
color="primary"

View File

@@ -94,11 +94,11 @@ export default function Navbar() {
{/* Desktop Nav */}
<nav className="hidden bg-white w-full lg:flex fixed top-0 left-0 py-36 px-32 items-center z-[2010]">
<Link to="/">
<a href="https://bolt.fun/">
<h2 className="text-h5 font-bold mr-40 lg:mr-64">
<img className='h-40' src={ASSETS.Logo} alt="Bolt fun logo" />
</h2>
</Link>
</a>
{/* <ul className="flex gap-32 xl:gap-64">
{navLinks.map((link, idx) => <li key={idx} className="text-body4 hover:text-primary-600">
<Link to={link.url}><link.icon className={`text-body2 align-middle inline-block mr-8 ${link.color}`} /> {link.text}</Link></li>