mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add additional rows to benchmark page
This commit is contained in:
parent
41011916ad
commit
e346b865ea
1 changed files with 25 additions and 4 deletions
|
|
@ -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>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue