Initial commit: Business Case Automation with Excel generation

This commit is contained in:
denisacirstea
2025-09-12 10:22:04 +03:00
commit 46b9c4cf28
12 changed files with 5091 additions and 0 deletions

33
thank-you.html Normal file
View File

@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You - Retail Media Business Case</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-white min-h-screen flex items-center justify-center py-8">
<div class="w-full max-w-[600px] mx-auto px-4 sm:px-6">
<div class="text-center mb-6">
<h1 class="text-4xl font-bold text-black mb-2">Thank You!</h1>
</div>
<div class="bg-gray-50 p-8 rounded-lg shadow-sm text-center">
<div class="mb-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 text-[#1f1a3e] mx-auto" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<p class="text-base text-[#1f1a3e] mb-8">
Your submission has been received successfully. Our retail media specialists will reach out to you soon.
</p>
<a href="/"
class="inline-block px-10 py-3 bg-gradient-to-r from-yellow-400 to-orange-500 text-white rounded-[10px] hover:from-yellow-500 hover:to-orange-600 font-bold text-lg uppercase tracking-wide transition-all shadow-md hover:shadow-lg">
Return Home
</a>
</div>
</div>
</body>
</html>