add favorite songs section to artist page (#1604)

This commit is contained in:
jeffvli
2026-02-02 22:23:38 -08:00
parent 50c3dbc0a0
commit ac5611fdca
16 changed files with 545 additions and 43 deletions
@@ -41,6 +41,7 @@ interface HeaderPlayButtonProps {
interface TitleProps {
children: ReactNode;
order?: number;
}
const HeaderPlayButton = ({
@@ -100,9 +101,9 @@ const HeaderPlayButton = ({
);
};
const Title = ({ children }: TitleProps) => {
const Title = ({ children, order = 1 }: TitleProps) => {
return (
<TextTitle fw={700} order={1} overflow="hidden">
<TextTitle fw={700} order={order as any} overflow="hidden">
{children}
</TextTitle>
);