Skip to content

Commit

Permalink
Add proposed logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ru Chern Chong committed Jun 23, 2024
1 parent 69f7324 commit 70a105d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
Binary file modified app/apple-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion app/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import Image from "next/image";
import Link from "next/link";
import banner from "@/app/banner.png";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
// import {
Expand All @@ -24,7 +26,10 @@ export const Header = () => {
return (
<>
<div className="flex items-center justify-between border-b-2 bg-white p-4">
<nav className="flex gap-x-4">
<nav className="flex items-center gap-x-4">
<Link href="/">
<Image src={banner} height={32} alt="Banner" />
</Link>
{navItems.map(({ title, href }) => {
return (
<NavItem key={title} href={href}>
Expand Down
Binary file modified app/favicon.ico
Binary file not shown.
Binary file modified app/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 70a105d

Please sign in to comment.