Spaces:
Running
Running
Manual changes saved
Browse files- value-mapper.html +16 -43
value-mapper.html
CHANGED
|
@@ -1,64 +1,37 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
-
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<
|
| 7 |
-
<
|
|
|
|
| 8 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
-
<
|
| 10 |
-
<
|
| 11 |
-
|
| 12 |
<script>
|
| 13 |
-
// Custom Tailwind Configuration for Branding
|
| 14 |
tailwind.config = {
|
|
|
|
| 15 |
theme: {
|
| 16 |
extend: {
|
| 17 |
colors: {
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
'sc-accent1': '#0083E6', // Blue
|
| 22 |
-
'sc-accent2': '#03CFDA', // Cyan
|
| 23 |
-
},
|
| 24 |
-
fontFamily: {
|
| 25 |
-
sans: ['Inter', 'sans-serif'],
|
| 26 |
-
heading: ['"Space Grotesk"', 'sans-serif'],
|
| 27 |
}
|
| 28 |
}
|
| 29 |
}
|
| 30 |
}
|
| 31 |
</script>
|
| 32 |
<style>
|
| 33 |
-
|
| 34 |
-
font-
|
| 35 |
-
background-color: #f7f7f7;
|
| 36 |
-
min-height: 100vh;
|
| 37 |
-
display: flex;
|
| 38 |
-
flex-direction: column;
|
| 39 |
}
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
-webkit-appearance: none;
|
| 43 |
-
-moz-appearance: none;
|
| 44 |
-
appearance: none;
|
| 45 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23792DD4'%3e%3cpath d='M9.293 12.95l.707.707L15 8.707V3h-2l-3 3-3-3H5v5.707L9.293 12.95z'/%3e%3c/svg%3e");
|
| 46 |
-
background-repeat: no-repeat;
|
| 47 |
-
background-position: right 0.7rem top 50%;
|
| 48 |
-
background-size: 0.65em auto;
|
| 49 |
}
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
header, footer {
|
| 53 |
-
display: none !important;
|
| 54 |
-
}
|
| 55 |
-
main {
|
| 56 |
-
margin-top: 0 !important;
|
| 57 |
-
padding-top: 0 !important;
|
| 58 |
-
}
|
| 59 |
-
.no-print {
|
| 60 |
-
display: none !important;
|
| 61 |
-
}
|
| 62 |
}
|
| 63 |
</style>
|
| 64 |
</head>
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
+
<html lang="en" class="scroll-smooth">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<meta name="description" content="ValueVortex Navigator - Your strategic sales companion">
|
| 7 |
+
<title> Pod Value Mapper | Home</title>
|
| 8 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 9 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 11 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
|
|
|
| 12 |
<script>
|
|
|
|
| 13 |
tailwind.config = {
|
| 14 |
+
darkMode: 'class',
|
| 15 |
theme: {
|
| 16 |
extend: {
|
| 17 |
colors: {
|
| 18 |
+
primary: '#6366f1',
|
| 19 |
+
secondary: '#8b5cf6',
|
| 20 |
+
dark: '#1e293b'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
}
|
| 22 |
}
|
| 23 |
}
|
| 24 |
}
|
| 25 |
</script>
|
| 26 |
<style>
|
| 27 |
+
.nav-link.active {
|
| 28 |
+
@apply text-primary font-medium border-b-2 border-primary;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
}
|
| 30 |
+
.card-hover {
|
| 31 |
+
@apply transition-all duration-300 hover:scale-105 hover:shadow-xl;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
}
|
| 33 |
+
.hamburger-line {
|
| 34 |
+
@apply w-6 h-0.5 bg-current transition-all duration-300;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
}
|
| 36 |
</style>
|
| 37 |
</head>
|