diff --git a/apps/rowboat/components/common/panel-common.tsx b/apps/rowboat/components/common/panel-common.tsx index 70dfaca5..040d523b 100644 --- a/apps/rowboat/components/common/panel-common.tsx +++ b/apps/rowboat/components/common/panel-common.tsx @@ -1,6 +1,8 @@ import clsx from "clsx"; import { Sparkles } from "lucide-react"; import { SHOW_COPILOT_MARQUEE } from "@/app/lib/feature_flags"; +import Image from "next/image"; +import mascot from "@/public/mascot.png"; export function ActionButton({ icon = null, @@ -73,7 +75,7 @@ export function Panel({ {variant === 'copilot' && showWelcome && (
{/* Replace Sparkles icon with mascot image */} - Rowboat Mascot + Rowboat Mascot {SHOW_COPILOT_MARQUEE && (
diff --git a/apps/rowboat/public/mascot.png b/apps/rowboat/public/mascot.png index 9e45e953..97f1baa6 100644 Binary files a/apps/rowboat/public/mascot.png and b/apps/rowboat/public/mascot.png differ