diff --git a/app/components/logo.tsx b/app/components/logo.tsx index 2fccc99..74b2495 100644 --- a/app/components/logo.tsx +++ b/app/components/logo.tsx @@ -1,9 +1,19 @@ import { Link } from "@remix-run/react"; +import { cn } from "~/utils/cn"; -export function Logo() { +type Props = Readonly<{ + hero?: boolean; +}>; + +export function Logo(props: Props) { return ( -