File size: 1,042 Bytes
4207c0e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Maturity Assessment - Sedna Consulting Group</title>
<script src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
<style>
@media print {
body { background: white; }
.no-print { display: none !important; }
.bg-gray-50 { background: white !important; }
.shadow-lg, .shadow-md { box-shadow: none !important; }
button { display: none !important; }
}
</style>
</head>
<body class="bg-gray-50">
<div id="root"></div>
<script src="questions.js"></script>
<script src="app.js"></script>
</body>
</html>
|