// frontend/src/components/AppHeader.jsx import React from "react"; import dojoLogo from "../assets/dojo-logo.png"; // bundled via Vite export default function AppHeader({ title, subtitle, right }) { return (
Dojo logo
{/* Title - now full black */}
{title}
{/* Subtitle - now darker than before */} {subtitle && (
{subtitle}
)}
{right && (
{right}
)}
); }