diff --git a/components/episode-card.tsx b/components/episode-card.tsx index b2c59d4..cd2b3ab 100644 --- a/components/episode-card.tsx +++ b/components/episode-card.tsx @@ -28,10 +28,9 @@ export function EpisodeCard(props: Props) { }} gap={{ initial: '3', - lg: '5', md: '4', }} - p="2" + p="1" > {props.title} @@ -53,17 +52,19 @@ export function EpisodeCard(props: Props) { ) : null} - - {formatDuration(props.duration * 1000)} + {props.published_date ? ( <> + {format( new Date(props.published_date * 1000), diff --git a/components/layout/app-footer.tsx b/components/layout/app-footer.tsx index cf96a8a..61c1004 100644 --- a/components/layout/app-footer.tsx +++ b/components/layout/app-footer.tsx @@ -33,23 +33,23 @@ export function AppFooter() { - + Built with ☕️ by your folks at the{' '} - Experiment Station + experiment.st {FOOTER_SERVICE_LINKS.map((link) => ( - + {link.label} {link !== FOOTER_SERVICE_LINKS[FOOTER_SERVICE_LINKS.length - 1] ? ( - · + · ) : null} ))} diff --git a/components/layout/app-header.tsx b/components/layout/app-header.tsx index 885d32f..a6dddf8 100644 --- a/components/layout/app-header.tsx +++ b/components/layout/app-header.tsx @@ -75,8 +75,9 @@ function AppHeaderActionsAuthenticated(