Add video detail page

This commit is contained in:
Kamran Ahmed
2021-08-22 15:36:03 +02:00
parent 13817a4318
commit fe34e7f8d7
7 changed files with 106 additions and 10 deletions

View File

@@ -11,7 +11,7 @@ export default function EnrichedLink(props: EnrichedLinkProps) {
const isExternalUrl = /(^http(s)?:\/\/)|(\.(png|svg|jpeg|jpg)$)/.test(props.href);
return (
<Link fontWeight={600} href={props.href} target={isExternalUrl ? '_blank' : '_self'}>
<Link fontWeight={600} href={props.href} target={isExternalUrl ? '_blank' : '_self'} textDecoration='underline'>
{props.children}
</Link>
);