Redirect youtube videos to youtuube

This commit is contained in:
Kamran Ahmed
2021-10-01 10:59:46 +02:00
parent f523b077a4
commit a2db93873b
4 changed files with 10 additions and 5 deletions

View File

@ -28,7 +28,8 @@ export default function Watch(props: VideosProps) {
<SimpleGrid columns={[1, 1, 2]} mb='30px' spacing={['10px', '10px', '15px']}>
{videos.map((video, counter) => (
<VideoGridItem
href={`/watch/${video.id}`}
target='_blank'
href={video.youtubeLink!}
key={video.id}
title={video.title}
subtitle={video.description}