Spaces:
Running
Running
Promote version 28dd2ea to main
Browse filesPromoted commit 28dd2eab293819fb1f763649749407eb05275899 to main branch
- value-mapper.html +19 -22
value-mapper.html
CHANGED
|
@@ -10,6 +10,7 @@
|
|
| 10 |
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
|
| 11 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
<script src="https://unpkg.com/feather-icons"></script>
|
|
|
|
| 13 |
<script>
|
| 14 |
tailwind.config = {
|
| 15 |
darkMode: 'class',
|
|
@@ -18,18 +19,14 @@
|
|
| 18 |
<style>
|
| 19 |
body { font-family: 'Poppins', sans-serif; }
|
| 20 |
.hamburger-line {
|
| 21 |
-
width: 20px; height: 2px;
|
| 22 |
-
transition: all 0.3s;
|
| 23 |
}
|
| 24 |
-
html:not(.dark) .hamburger-line { background-color: #4a5568; }
|
| 25 |
-
html.dark .hamburger-line { background-color: white; }
|
| 26 |
-
|
| 27 |
.open .hamburger-line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
|
| 28 |
.open .hamburger-line:nth-child(2) { opacity: 0; }
|
| 29 |
.open .hamburger-line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
|
| 30 |
.nav-link.active {
|
| 31 |
font-weight: 600;
|
| 32 |
-
border-bottom: 2px solid #
|
| 33 |
}
|
| 34 |
select {
|
| 35 |
-webkit-appearance: none; -moz-appearance: none; appearance: none;
|
|
@@ -54,7 +51,7 @@
|
|
| 54 |
</a>
|
| 55 |
<nav class="hidden md:flex space-x-8">
|
| 56 |
<a href="index.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors">Home</a>
|
| 57 |
-
<a href="value-mapper.html" class="nav-link active py-2 px-1 text-gray-
|
| 58 |
<a href="scorecard.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors">Scorecard</a>
|
| 59 |
<a href="strategy.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors">Method</a>
|
| 60 |
</nav>
|
|
@@ -63,7 +60,7 @@
|
|
| 63 |
<i data-feather="moon" class="hidden dark:block"></i>
|
| 64 |
<i data-feather="sun" class="block dark:hidden"></i>
|
| 65 |
</button>
|
| 66 |
-
<button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1.5 p-2 bg-
|
| 67 |
<span class="hamburger-line"></span>
|
| 68 |
<span class="hamburger-line"></span>
|
| 69 |
<span class="hamburger-line"></span>
|
|
@@ -73,7 +70,7 @@
|
|
| 73 |
<div id="mobileMenu" class="hidden md:hidden py-4 border-t border-gray-200 dark:border-gray-700 mt-3">
|
| 74 |
<div class="flex flex-col space-y-3">
|
| 75 |
<a href="index.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300">Home</a>
|
| 76 |
-
<a href="value-mapper.html" class="nav-link active py-2 px-1 text-gray-
|
| 77 |
<a href="scorecard.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300">Scorecard</a>
|
| 78 |
<a href="strategy.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300">Method</a>
|
| 79 |
</div>
|
|
@@ -81,19 +78,19 @@
|
|
| 81 |
</div>
|
| 82 |
</header>
|
| 83 |
|
| 84 |
-
<main class="flex-grow bg-
|
| 85 |
<div class="container mx-auto px-4 py-12">
|
| 86 |
-
<div class="bg-
|
| 87 |
-
<div class="text-center">
|
| 88 |
-
<h1 class="text-3xl sm:text-4xl font-heading font-extrabold text-white mb-3 leading-tight">Pod Value Mapper</h1>
|
| 89 |
-
<div class="flex justify-center mb-6">
|
| 90 |
-
|
| 91 |
-
</div>
|
| 92 |
</div>
|
| 93 |
<div class="max-w-md mx-auto">
|
| 94 |
-
<select id="industry-selector" onchange="updateContent()" class="block w-full py-3 px-4 pr-10 border border-
|
| 95 |
-
<option value="placeholder" disabled selected class="text-
|
| 96 |
-
<option value="Financial Services and Insurance">Financial Services and Insurance</option>
|
| 97 |
<option value="Healthcare and Biotechnology">Healthcare and Biotechnology</option>
|
| 98 |
<option value="E-commerce and Retail">E-commerce and Retail</option>
|
| 99 |
<option value="Media and Entertainment">Media and Entertainment</option>
|
|
@@ -111,12 +108,12 @@
|
|
| 111 |
</div>
|
| 112 |
</div>
|
| 113 |
|
| 114 |
-
<div id="initial-message" class="text-center p-12 rounded-xl bg-white dark:bg-gray-800 text-gray-600 dark:text-gray-300 border-2 border-dashed border-gray-
|
| 115 |
<p class="text-lg font-medium">Please select an industry from the dropdown above to reveal targeted value mapping, discovery questions, and permission-based openers.</p>
|
| 116 |
</div>
|
| 117 |
|
| 118 |
<div id="dynamic-area" class="hidden space-y-8">
|
| 119 |
-
<h2 id="industry-title" class="text-3xl font-heading font-bold text-
|
| 120 |
|
| 121 |
<div class="bg-white dark:bg-gray-800 p-6 sm:p-8 rounded-xl shadow-lg">
|
| 122 |
<h3 class="text-xl font-heading font-bold mb-6 text-gray-800 dark:text-white">Recommended Value Proposition & Suggested Product Focus</h3>
|
|
@@ -132,7 +129,7 @@
|
|
| 132 |
</div>
|
| 133 |
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-lg">
|
| 134 |
<h3 class="text-lg font-heading font-bold mb-4 text-gray-800 dark:text-white">Discovery Question 2</h3>
|
| 135 |
-
<p id=
|
| 136 |
<h4 class="font-bold text-sm uppercase text-gray-500 dark:text-gray-400 mb-2">Permission-Based Opener 2</h4>
|
| 137 |
<p id="pbo2" class="text-gray-800 dark:text-white font-medium text-base"></p>
|
| 138 |
</div>
|
|
|
|
| 10 |
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
|
| 11 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
<script src="https://unpkg.com/feather-icons"></script>
|
| 13 |
+
|
| 14 |
<script>
|
| 15 |
tailwind.config = {
|
| 16 |
darkMode: 'class',
|
|
|
|
| 19 |
<style>
|
| 20 |
body { font-family: 'Poppins', sans-serif; }
|
| 21 |
.hamburger-line {
|
| 22 |
+
width: 20px; height: 2px; background-color: white; display: block; transition: all 0.3s;
|
|
|
|
| 23 |
}
|
|
|
|
|
|
|
|
|
|
| 24 |
.open .hamburger-line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
|
| 25 |
.open .hamburger-line:nth-child(2) { opacity: 0; }
|
| 26 |
.open .hamburger-line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
|
| 27 |
.nav-link.active {
|
| 28 |
font-weight: 600;
|
| 29 |
+
border-bottom: 2px solid #9B5CEB;
|
| 30 |
}
|
| 31 |
select {
|
| 32 |
-webkit-appearance: none; -moz-appearance: none; appearance: none;
|
|
|
|
| 51 |
</a>
|
| 52 |
<nav class="hidden md:flex space-x-8">
|
| 53 |
<a href="index.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors">Home</a>
|
| 54 |
+
<a href="value-mapper.html" class="nav-link active py-2 px-1 text-gray-600 dark:text-gray-300">Mapper</a>
|
| 55 |
<a href="scorecard.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors">Scorecard</a>
|
| 56 |
<a href="strategy.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors">Method</a>
|
| 57 |
</nav>
|
|
|
|
| 60 |
<i data-feather="moon" class="hidden dark:block"></i>
|
| 61 |
<i data-feather="sun" class="block dark:hidden"></i>
|
| 62 |
</button>
|
| 63 |
+
<button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1.5 p-2 bg-purple-600 rounded-lg">
|
| 64 |
<span class="hamburger-line"></span>
|
| 65 |
<span class="hamburger-line"></span>
|
| 66 |
<span class="hamburger-line"></span>
|
|
|
|
| 70 |
<div id="mobileMenu" class="hidden md:hidden py-4 border-t border-gray-200 dark:border-gray-700 mt-3">
|
| 71 |
<div class="flex flex-col space-y-3">
|
| 72 |
<a href="index.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300">Home</a>
|
| 73 |
+
<a href="value-mapper.html" class="nav-link active py-2 px-1 text-gray-600 dark:text-gray-300">Mapper</a>
|
| 74 |
<a href="scorecard.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300">Scorecard</a>
|
| 75 |
<a href="strategy.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300">Method</a>
|
| 76 |
</div>
|
|
|
|
| 78 |
</div>
|
| 79 |
</header>
|
| 80 |
|
| 81 |
+
<main class="flex-grow bg-gradient-to-br from-purple-600 to-indigo-700">
|
| 82 |
<div class="container mx-auto px-4 py-12">
|
| 83 |
+
<div class="bg-white dark:bg-gray-800 p-6 sm:p-8 rounded-2xl shadow-2xl mb-8">
|
| 84 |
+
<div class="text-center">
|
| 85 |
+
<h1 class="text-3xl sm:text-4xl font-heading font-extrabold text-gray-800 dark:text-white mb-3 leading-tight">Pod Value Mapper</h1>
|
| 86 |
+
<div class="flex justify-center mb-6">
|
| 87 |
+
<img src="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/PublicEducationPod-Illustration-transparent.png" alt="Pod Value Mapper" class="h-48 w-auto">
|
| 88 |
+
</div>
|
| 89 |
</div>
|
| 90 |
<div class="max-w-md mx-auto">
|
| 91 |
+
<select id="industry-selector" onchange="updateContent()" class="block w-full py-3 px-4 pr-10 border border-gray-300 dark:border-gray-600 rounded-xl text-base font-semibold text-gray-800 dark:text-gray-200 bg-white dark:bg-gray-700 focus:ring-2 focus:ring-purple-500 focus:outline-none transition duration-200 shadow-lg">
|
| 92 |
+
<option value="placeholder" disabled selected class="text-gray-500">- Choose Industry to Map -</option>
|
| 93 |
+
<option value="Financial Services and Insurance">Financial Services and Insurance</option>
|
| 94 |
<option value="Healthcare and Biotechnology">Healthcare and Biotechnology</option>
|
| 95 |
<option value="E-commerce and Retail">E-commerce and Retail</option>
|
| 96 |
<option value="Media and Entertainment">Media and Entertainment</option>
|
|
|
|
| 108 |
</div>
|
| 109 |
</div>
|
| 110 |
|
| 111 |
+
<div id="initial-message" class="text-center p-12 rounded-xl bg-white/80 dark:bg-gray-800/80 text-gray-600 dark:text-gray-300 border-2 border-dashed border-gray-400 dark:border-gray-600 backdrop-blur-sm">
|
| 112 |
<p class="text-lg font-medium">Please select an industry from the dropdown above to reveal targeted value mapping, discovery questions, and permission-based openers.</p>
|
| 113 |
</div>
|
| 114 |
|
| 115 |
<div id="dynamic-area" class="hidden space-y-8">
|
| 116 |
+
<h2 id="industry-title" class="text-3xl font-heading font-bold text-white text-center pt-4"></h2>
|
| 117 |
|
| 118 |
<div class="bg-white dark:bg-gray-800 p-6 sm:p-8 rounded-xl shadow-lg">
|
| 119 |
<h3 class="text-xl font-heading font-bold mb-6 text-gray-800 dark:text-white">Recommended Value Proposition & Suggested Product Focus</h3>
|
|
|
|
| 129 |
</div>
|
| 130 |
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-lg">
|
| 131 |
<h3 class="text-lg font-heading font-bold mb-4 text-gray-800 dark:text-white">Discovery Question 2</h3>
|
| 132 |
+
<p id=dq2 class="text-gray-600 dark:text-gray-400 italic mb-6 text-base"></p>
|
| 133 |
<h4 class="font-bold text-sm uppercase text-gray-500 dark:text-gray-400 mb-2">Permission-Based Opener 2</h4>
|
| 134 |
<p id="pbo2" class="text-gray-800 dark:text-white font-medium text-base"></p>
|
| 135 |
</div>
|