mirror of
https://github.com/twinpath/app-beta.git
synced 2026-01-26 05:45:26 +07:00
first commit
This commit is contained in:
30
resources/views/pages/ui-elements/videos.blade.php
Normal file
30
resources/views/pages/ui-elements/videos.blade.php
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
@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
|
||||
Reference in New Issue
Block a user