fernando-bold's picture
"use client"
070478f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WhatsApp Template Wizard</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>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
500: '#F59E0B',
600: '#D97706',
},
secondary: {
500: '#3B82F6',
600: '#2563EB',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-50">
<div id="app" class="container mx-auto py-8">
<!-- App content will be rendered here -->
</div>
<script src="components/navbar.js"></script>
<script src="components/template-card.js"></script>
<script src="components/status-badge.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>