- Updated videos.html to enhance readability and maintainability. - Refactored webpack.config.js for better organization and clarity. - Cleaned up TypeScript configuration files (tsconfig.app.json, tsconfig.json, tsconfig.spec.json) for consistency in formatting. - Adjusted docker-compose.yaml for improved formatting and readability.
74 lines
2.2 KiB
HTML
74 lines
2.2 KiB
HTML
<div class="flex flex-col items-center justify-center gap-5 sm:flex-row">
|
|
<div class="relative h-6 w-full max-w-6 rounded-full">
|
|
<img
|
|
src="./images/user/user-01.jpg"
|
|
alt="user"
|
|
class="overflow-hidden rounded-full"
|
|
/>
|
|
|
|
<span
|
|
class="absolute bottom-0 right-0 h-1.5 w-full max-w-1.5 rounded-full border-[1.5px] border-white bg-success-500 dark:border-gray-900"
|
|
></span>
|
|
</div>
|
|
|
|
<div class="relative h-8 w-full max-w-8 rounded-full">
|
|
<img
|
|
src="./images/user/user-01.jpg"
|
|
alt="user"
|
|
class="overflow-hidden rounded-full"
|
|
/>
|
|
|
|
<span
|
|
class="absolute bottom-0 right-0 h-2 w-full max-w-2 rounded-full border-[1.5px] border-white bg-success-500 dark:border-gray-900"
|
|
></span>
|
|
</div>
|
|
|
|
<div class="relative h-10 w-full max-w-10 rounded-full">
|
|
<img
|
|
src="./images/user/user-01.jpg"
|
|
alt="user"
|
|
class="overflow-hidden rounded-full"
|
|
/>
|
|
|
|
<span
|
|
class="absolute bottom-0 right-0 h-2.5 w-full max-w-2.5 rounded-full border-[1.5px] border-white bg-success-500 dark:border-gray-900"
|
|
></span>
|
|
</div>
|
|
|
|
<div class="relative h-12 w-full max-w-12 rounded-full">
|
|
<img
|
|
src="./images/user/user-01.jpg"
|
|
alt="user"
|
|
class="overflow-hidden rounded-full"
|
|
/>
|
|
|
|
<span
|
|
class="absolute bottom-0 right-0 h-3 w-full max-w-3 rounded-full border-[1.5px] border-white bg-success-500 dark:border-gray-900"
|
|
></span>
|
|
</div>
|
|
|
|
<div class="relative h-14 w-full max-w-14 rounded-full">
|
|
<img
|
|
src="./images/user/user-01.jpg"
|
|
alt="user"
|
|
class="overflow-hidden rounded-full"
|
|
/>
|
|
|
|
<span
|
|
class="absolute bottom-0 right-0 h-3.5 w-full max-w-3.5 rounded-full border-[1.5px] border-white bg-success-500 dark:border-gray-900"
|
|
></span>
|
|
</div>
|
|
|
|
<div class="relative h-16 w-full max-w-16 rounded-full">
|
|
<img
|
|
src="./images/user/user-01.jpg"
|
|
alt="user"
|
|
class="overflow-hidden rounded-full"
|
|
/>
|
|
|
|
<span
|
|
class="absolute bottom-0 right-0 h-4 w-full max-w-4 rounded-full border-[1.5px] border-white bg-success-500 dark:border-gray-900"
|
|
></span>
|
|
</div>
|
|
</div>
|