Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions core/components/navigation/MainNavBar.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ThreeBarsIcon } from '@primer/octicons-react';
import Image from 'next/image';
import Link from 'next/link';
import React from 'react';

Expand All @@ -13,8 +14,9 @@ const Navbar = () => {
<div className="container px-4 mx-auto flex flex-wrap items-center justify-between">
<div className="w-full relative flex justify-between lg:w-auto lg:static lg:block lg:justify-start">
<Link href="/">
<a className="font-bold leading-relaxed flex justify-center items-center inline-block mr-4 py-2 uppercase">
<img src="/logo.png" className="h-[48px]" alt="" /> <TextLogo />
<a className="font-bold leading-relaxed flex justify-center items-center mr-4 py-2 uppercase">
<Image src="/logo.png" width="30%" height={48} alt="" />
<TextLogo />
</a>
</Link>
<button
Expand Down