Skip to content

Commit

Permalink
Remove logo
Browse files Browse the repository at this point in the history
  • Loading branch information
verdakode committed Jan 25, 2025
1 parent 7264f0a commit 25237df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default function NavBar({ href = "/" }: { href?: string } = {}) {
const desktopNavBar = () => {
return (
<>
<Logotype atTop={atTop} isMenuOpen={mobileShouldOpenBurger} href={href} />
{/* <Logotype atTop={atTop} isMenuOpen={mobileShouldOpenBurger} href={href} /> */}
<div
className={
"flex flex-row gap-6 items-center 2xl:-col-end-3 xl:-col-end-3 lg:-col-end-3 md:-col-end-3"
Expand Down
1 change: 0 additions & 1 deletion src/zbot/navbar/navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { useState } from "react";
import BurgerMenu from "./burgerMenu";
import BurgerOpenButton from "./burgerOpenButton";
import Logotype from "@/components/logos/logotype";

const NavBar = ({ href }: { href: string }) => {
const [mobileShouldOpenBurger, setMobileShouldOpenBurger] = useState(false);
Expand Down

0 comments on commit 25237df

Please sign in to comment.