Skip to content

Commit

Permalink
add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewliu08 committed Sep 19, 2024
1 parent 93f1440 commit 9fe12f6
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
Binary file added apps/crepe/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions apps/crepe/public/crepe-logo.svg
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 apps/crepe/public/favicon.ico
Binary file not shown.
8 changes: 5 additions & 3 deletions apps/crepe/src/app/components/navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
"use client";

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

import { Logo } from "./logo";
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-6">
<Logo className="h-9" />
<div className="relative flex gap-3">
<Image src={CrepeLogo} alt="Crepe Logo" className="h-8 w-auto" />
<h1 className="text-2xl font-medium tracking-tight">Crepe</h1>
</div>
</Disclosure>
);
Expand Down
4 changes: 4 additions & 0 deletions apps/crepe/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ export const metadata: Metadata = {
template: "%s - Crepe",
default: "Crepe - Seamless crypto payments",
},
icons: [
{ rel: "icon", url: "/favicon.ico" },
{ rel: "apple-touch-icon", url: "/apple-touch-icon.png" },
],
};

export default function RootLayout({
Expand Down

0 comments on commit 9fe12f6

Please sign in to comment.