Add additional rows to benchmark page

This commit is contained in:
Sam Carlton 2020-12-11 01:36:05 -06:00
parent 41011916ad
commit e346b865ea

View file

@ -1,6 +1,6 @@
<template> <template>
<section class="container py-16"> <section class="container py-16">
<div class="flex flex-col items-center text-center space-y-6"> <div class="flex flex-col items-center text-center space-y-8">
<VideoPlayer <VideoPlayer
:video="video" :video="video"
/> />
@ -10,11 +10,32 @@
</h1> --> </h1> -->
<div class="related-videos w-full max-w-4xl"> <div class="related-videos w-full max-w-4xl">
<!-- <h2 class="subtitle text-xl md:text-2xl font-bold mb-3"> <h2 class="subtitle text-xl md:text-2xl font-bold mb-3">
{{ app.name }} Related Videos Benchmark Videos
</h2> --> </h2>
<VideoRow <VideoRow
:videos="relatedVideos" :videos="relatedVideos"
:active-video-id="video.id"
/>
</div>
<div class="related-videos w-full max-w-4xl">
<h2 class="subtitle text-xl md:text-2xl font-bold mb-3">
Performance Videos
</h2>
<VideoRow
:videos="relatedVideos"
:active-video-id="video.id"
/>
</div>
<div class="related-videos w-full max-w-4xl">
<h2 class="subtitle text-xl md:text-2xl font-bold mb-3">
More Videos
</h2>
<VideoRow
:videos="relatedVideos"
:active-video-id="video.id"
/> />
</div> </div>