Skip to content

Commit

Permalink
fix logo
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewliu08 committed Sep 19, 2024
1 parent 870371e commit bd285c7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions apps/crepe/src/app/components/navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
"use client";

import { Disclosure } from "@headlessui/react";
import Image from "next/image";

import CrepeLogo from "@/public/crepe-logo.svg";

export function Navbar() {
return (
<Disclosure as="header" className="pt-12 sm:pt-16">
<div className="relative flex gap-3">
<Image src={CrepeLogo} alt="Crepe Logo" className="h-8 w-auto" />
<Image
src="/crepe-logo.svg"
alt="Crepe Logo"
height={32}
width={32}
className="h-8 w-auto"
/>
<h1 className="text-2xl font-medium tracking-tight">Crepe</h1>
</div>
</Disclosure>
Expand Down

0 comments on commit bd285c7

Please sign in to comment.