<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Preview: <?php echo e($tutorial->title); ?></title>
    <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100">
    <div class="min-h-screen py-8">
        <div class="max-w-6xl mx-auto px-4">
            
            <div class="bg-white rounded-lg shadow-md p-6 mb-6">
                <div class="mb-4">
                    <a href="<?php echo e(route('products.show', $tutorial->tutorialVersion->product)); ?>"
                       class="text-blue-600 hover:text-blue-800 text-sm">
                        ← Volver al producto: <?php echo e($tutorial->tutorialVersion->product->name); ?>

                    </a>
                </div>
                <h1 class="text-2xl font-bold mb-2"><?php echo e($tutorial->title); ?></h1>
                <?php if($tutorial->desc): ?>
                    <p class="text-gray-600 mb-4"><?php echo e($tutorial->desc); ?></p>
                <?php endif; ?>
                <div class="flex items-center gap-4 text-sm text-gray-500">
                    <span>Plataforma: <span class="font-semibold uppercase"><?php echo e($tutorial->platform); ?></span></span>
                    <span>•</span>
                    <span>Versión: <span class="font-mono"><?php echo e($tutorial->tutorialVersion->version); ?></span></span>
                    <span>•</span>
                    <a href="<?php echo e($videoUrl); ?>" target="_blank" class="text-blue-600 hover:text-blue-800">
                        Ver en <?php echo e($tutorial->platform === 'youtube' ? 'YouTube' : 'Vimeo'); ?> →
                    </a>
                </div>
            </div>

            
            <div class="bg-white rounded-lg shadow-md p-6">
                <div class="aspect-video w-full">
                    <iframe
                        src="<?php echo e($embedUrl); ?>"
                        frameborder="0"
                        allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                        allowfullscreen
                        class="w-full h-full rounded-lg"
                    ></iframe>
                </div>
            </div>
        </div>
    </div>
</body>
</html>


<?php /**PATH /var/www/html/resources/views/tutorials/preview.blade.php ENDPATH**/ ?>