first commit

This commit is contained in:
2025-12-21 08:03:18 +07:00
commit 7c746f776a
300 changed files with 24836 additions and 0 deletions

View 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