Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
feat: logo
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Jul 9, 2024
1 parent c9df4e1 commit 83fbbb1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 7 additions & 3 deletions src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ import {
import { MagnifyingGlassIcon } from "@heroicons/react/20/solid";
import { Bars3Icon, BellIcon, XMarkIcon } from "@heroicons/react/24/outline";
import Link from "next/link";
import Image from "next/image";

import logo from "../../public/logo.svg";
import config from "@/config/app.json";
import classNames from "@/utils/classNames";

Expand Down Expand Up @@ -42,10 +44,12 @@ export default function Header({ session, user }) {
<div className="relative flex h-16 justify-between">
<div className="relative z-10 flex px-2 lg:px-0 gap-6">
<div className="flex flex-shrink-0 items-center">
<img
alt="Your Company"
src="https://tailwindui.com/img/logos/mark.svg?color=indigo&shade=500"
<Image
alt="Open Source HealthCheck"
src={logo}
className="h-8 w-auto"
height={32}
width={32}
/>
</div>
<div className="flex items-end text-gray-400 text-sm">
Expand Down

0 comments on commit 83fbbb1

Please sign in to comment.