mirror of
https://github.com/twinpath/app-beta.git
synced 2026-01-26 22:01:53 +07:00
31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
|
|
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
{{-- Page Breadcrumb --}}
|
|
<x-common.page-breadcrumb pageTitle="Videos" />
|
|
|
|
<div class="grid grid-cols-1 gap-5 sm:gap-6 xl:grid-cols-2">
|
|
|
|
<div class="space-y-5 sm:space-y-6">
|
|
<x-common.component-card title="Video Ratio 16:9">
|
|
<x-ui.youtube-embed videoId="dQw4w9WgXcQ" />
|
|
</x-common.component-card>
|
|
|
|
<x-common.component-card title="Video Ratio 4:3">
|
|
<x-ui.youtube-embed videoId="dQw4w9WgXcQ" aspectRatio="4:3" />
|
|
</x-common.component-card>
|
|
</div>
|
|
|
|
<div class="space-y-5 sm:space-y-6">
|
|
<x-common.component-card title="Video Ratio 21:9">
|
|
<x-ui.youtube-embed videoId="dQw4w9WgXcQ" aspectRatio="21:9" />
|
|
</x-common.component-card>
|
|
<x-common.component-card title="Video Ratio 1:1">
|
|
<x-ui.youtube-embed videoId="dQw4w9WgXcQ" aspectRatio="1:1" />
|
|
</x-common.component-card>
|
|
</div>
|
|
|
|
</div>
|
|
@endsection
|