mindbloom-academy / index.html
vitorykwrt's picture
COPIE EXATAMENTE COMO E O SITE , COM AS FOTOS , NOMES ETC
3478103 verified
Raw
History Blame Contribute Delete
3.71 kB
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MindBloom Academy - Carrinho de Cursos</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/cart-steps.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<div class="max-w-4xl mx-auto">
<h1 class="text-3xl font-bold text-gray-800 mb-8">Finalize sua Compra</h1>
<custom-cart-steps active-step="1"></custom-cart-steps>
<div class="bg-white rounded-lg shadow-md p-6 mt-8">
<div class="flex justify-between items-center border-b pb-4 mb-6">
<h2 class="text-xl font-semibold text-gray-700">Seu Carrinho</h2>
<span class="text-sm text-gray-500">1 item</span>
</div>
<div class="flex flex-col md:flex-row gap-6 mb-8">
<div class="md:w-1/4">
<img src="http://static.photos/education/320x240/42" alt="Curso" class="rounded-lg w-full h-auto">
</div>
<div class="md:w-3/4">
<h3 class="text-lg font-medium text-gray-800">Curso Avançado de Transformação Pessoal</h3>
<p class="text-gray-600 mt-2">Por MindBloom Academy</p>
<div class="flex items-center mt-4">
<span class="text-2xl font-bold text-gray-800">R$ 497,00</span>
<span class="ml-4 text-sm text-gray-500 line-through">R$ 997,00</span>
<span class="ml-4 bg-green-100 text-green-800 text-xs px-2 py-1 rounded">50% OFF</span>
</div>
</div>
</div>
<div class="border-t pt-6">
<div class="flex justify-between items-center mb-4">
<span class="text-gray-600">Subtotal</span>
<span class="font-medium">R$ 497,00</span>
</div>
<div class="flex justify-between items-center mb-4">
<span class="text-gray-600">Desconto</span>
<span class="text-green-600 font-medium">-R$ 500,00</span>
</div>
<div class="flex justify-between items-center border-t pt-4">
<span class="text-lg font-semibold">Total</span>
<span class="text-2xl font-bold text-gray-800">R$ 497,00</span>
</div>
</div>
<div class="mt-8 flex justify-end">
<a href="/checkout" class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-6 rounded-lg transition duration-200 flex items-center">
Continuar <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>