decisiveai-pathfinder / index.html
alexshkor's picture
сделай веьсайт для этого фреймфорвка с прохождением по нему и сохранением результата в виде json и чтобы еще был ИИ который помогает проходит по нему
c14009b verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DecisiveAI Pathfinder</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
.fade-in {
animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.decision-card {
transition: all 0.3s ease;
}
.decision-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
</style>
</head>
<body class="bg-gray-50">
<div id="vanta-bg" class="fixed inset-0 z-0"></div>
<div class="relative z-10 min-h-screen">
<!-- Header -->
<header class="bg-white/80 backdrop-blur-md shadow-sm">
<div class="container mx-auto px-4 py-6 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="compass" class="text-indigo-600 w-8 h-8"></i>
<h1 class="text-2xl font-bold text-gray-800">DecisiveAI <span class="text-indigo-600">Pathfinder</span></h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Framework</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">AI Guide</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Dashboard</a>
</nav>
<button class="md:hidden">
<i data-feather="menu" class="w-6 h-6 text-gray-700"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="py-20 px-4">
<div class="container mx-auto text-center max-w-4xl">
<h1 class="text-5xl font-bold text-gray-800 mb-6">Navigate the <span class="text-indigo-600">7-Decisions</span> Framework</h1>
<p class="text-xl text-gray-600 mb-10">Transform your abstract idea into a successful product with AI-powered guidance at every step.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-8 rounded-lg shadow-md transition duration-300">Start Your Journey</button>
<button class="bg-white hover:bg-gray-100 text-gray-800 font-medium py-3 px-8 rounded-lg shadow-md border border-gray-200 transition duration-300">Explore Framework</button>
</div>
</div>
</section>
<!-- Decision Steps -->
<section class="py-16 px-4">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">The 7 Key Decisions</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Decision 1 -->
<div class="decision-card bg-white rounded-xl p-6 shadow-lg fade-in">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 text-indigo-800 w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">1</div>
<h3 class="text-xl font-bold text-gray-800">Mission</h3>
</div>
<p class="text-gray-600 mb-4">Define your core purpose that anchors identity and inspires action.</p>
<button class="text-indigo-600 font-medium flex items-center">
Explore <i data-feather="chevron-right" class="w-4 h-4 ml-1"></i>
</button>
</div>
<!-- Decision 2 -->
<div class="decision-card bg-white rounded-xl p-6 shadow-lg fade-in" style="animation-delay: 0.1s">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 text-indigo-800 w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">2</div>
<h3 class="text-xl font-bold text-gray-800">Vision</h3>
</div>
<p class="text-gray-600 mb-4">Create a vivid narrative of the future your mission will create.</p>
<button class="text-indigo-600 font-medium flex items-center">
Explore <i data-feather="chevron-right" class="w-4 h-4 ml-1"></i>
</button>
</div>
<!-- Decision 3 -->
<div class="decision-card bg-white rounded-xl p-6 shadow-lg fade-in" style="animation-delay: 0.2s">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 text-indigo-800 w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">3</div>
<h3 class="text-xl font-bold text-gray-800">Market</h3>
</div>
<p class="text-gray-600 mb-4">Identify specific, behaviorally distinct market segments.</p>
<button class="text-indigo-600 font-medium flex items-center">
Explore <i data-feather="chevron-right" class="w-4 h-4 ml-1"></i>
</button>
</div>
<!-- Decision 4 -->
<div class="decision-card bg-white rounded-xl p-6 shadow-lg fade-in" style="animation-delay: 0.3s">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 text-indigo-800 w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">4</div>
<h3 class="text-xl font-bold text-gray-800">Core Need</h3>
</div>
<p class="text-gray-600 mb-4">Discover the emotionally charged problem your segment faces.</p>
<button class="text-indigo-600 font-medium flex items-center">
Explore <i data-feather="chevron-right" class="w-4 h-4 ml-1"></i>
</button>
</div>
<!-- Decision 5 -->
<div class="decision-card bg-white rounded-xl p-6 shadow-lg fade-in" style="animation-delay: 0.4s">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 text-indigo-800 w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">5</div>
<h3 class="text-xl font-bold text-gray-800">Solution Principle</h3>
</div>
<p class="text-gray-600 mb-4">Define your abstract, technology-agnostic approach.</p>
<button class="text-indigo-600 font-medium flex items-center">
Explore <i data-feather="chevron-right" class="w-4 h-4 ml-1"></i>
</button>
</div>
<!-- Decision 6 -->
<div class="decision-card bg-white rounded-xl p-6 shadow-lg fade-in" style="animation-delay: 0.5s">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 text-indigo-800 w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">6</div>
<h3 class="text-xl font-bold text-gray-800">Product</h3>
</div>
<p class="text-gray-600 mb-4">Implement your solution with features and business model.</p>
<button class="text-indigo-600 font-medium flex items-center">
Explore <i data-feather="chevron-right" class="w-4 h-4 ml-1"></i>
</button>
</div>
<!-- Decision 7 -->
<div class="decision-card bg-white rounded-xl p-6 shadow-lg fade-in md:col-span-2 lg:col-span-1" style="animation-delay: 0.6s">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 text-indigo-800 w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">7</div>
<h3 class="text-xl font-bold text-gray-800">Technology</h3>
</div>
<p class="text-gray-600 mb-4">Choose the architecture that enables scalability and creates a moat.</p>
<button class="text-indigo-600 font-medium flex items-center">
Explore <i data-feather="chevron-right" class="w-4 h-4 ml-1"></i>
</button>
</div>
</div>
</div>
</section>
<!-- AI Guide Section -->
<section class="py-16 px-4 bg-indigo-50">
<div class="container mx-auto max-w-6xl">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold text-gray-800 mb-6">AI-Powered <span class="text-indigo-600">Decision Guide</span></h2>
<p class="text-gray-600 mb-6">Our intelligent assistant helps you navigate each decision point with personalized recommendations, examples, and validation checks.</p>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-3 mt-1 flex-shrink-0"></i>
<span class="text-gray-700">Interactive questionnaires to clarify your thinking</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-3 mt-1 flex-shrink-0"></i>
<span class="text-gray-700">Real-time feedback on decision coherence</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-3 mt-1 flex-shrink-0"></i>
<span class="text-gray-700">Automated documentation of your progress</span>
</li>
</ul>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-8 rounded-lg shadow-md transition duration-300 flex items-center">
Try AI Guide <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</button>
</div>
<div class="md:w-1/2 bg-white rounded-xl p-6 shadow-lg">
<div class="bg-gray-100 rounded-lg p-4 mb-4">
<div class="flex items-center mb-3">
<div class="bg-indigo-100 text-indigo-800 w-8 h-8 rounded-full flex items-center justify-center font-bold mr-3">AI</div>
<p class="font-medium text-gray-800">Let's refine your Mission statement. What positive change do you want to create?</p>
</div>
<div class="bg-white rounded p-4 mb-3">
<p class="text-gray-700 italic">"I want to help small businesses grow online."</p>
</div>
<div class="flex items-center">
<div class="bg-indigo-100 text-indigo-800 w-8 h-8 rounded-full flex items-center justify-center font-bold mr-3">AI</div>
<p class="font-medium text-gray-800">Great start! Try making it more specific and inspirational, like: "To empower local businesses with affordable digital tools that level the playing field with big corporations."</p>
</div>
</div>
<div class="bg-gray-50 border border-gray-200 rounded-lg p-4">
<textarea class="w-full bg-transparent focus:outline-none resize-none" rows="3" placeholder="Type your refined mission here..."></textarea>
<div class="flex justify-between items-center mt-2">
<span class="text-xs text-gray-500">AI is analyzing your input...</span>
<button class="text-sm bg-indigo-600 text-white px-3 py-1 rounded">Submit</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Progress Tracking -->
<section class="py-16 px-4">
<div class="container mx-auto max-w-4xl">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-6">Track Your <span class="text-indigo-600">Progress</span></h2>
<p class="text-gray-600 text-center mb-10">Your journey through the 7-Decisions framework is automatically documented and exportable for your team.</p>
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold text-gray-800">Current Progress</h3>
</div>
<div class="p-6">
<div class="mb-6">
<div class="flex justify-between mb-2">
<span class="text-sm font-medium text-gray-700">Framework Completion</span>
<span class="text-sm font-medium text-indigo-600">14%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 14%"></div>
</div>
</div>
<div class="grid grid-cols-7 gap-2 mb-8">
<div class="h-2 rounded-full bg-indigo-600"></div>
<div class="h-2 rounded-full bg-indigo-600"></div>
<div class="h-2 rounded-full bg-gray-200"></div>
<div class="h-2 rounded-full bg-gray-200"></div>
<div class="h-2 rounded-full bg-gray-200"></div>
<div class="h-2 rounded-full bg-gray-200"></div>
<div class="h-2 rounded-full bg-gray-200"></div>
</div>
<div class="flex flex-col space-y-4">
<div class="flex justify-between items-center p-4 bg-indigo-50 rounded-lg">
<div class="flex items-center">
<div class="bg-indigo-100 text-indigo-800 w-6 h-6 rounded-full flex items-center justify-center font-bold text-xs mr-3">1</div>
<span class="font-medium text-gray-800">Mission</span>
</div>
<span class="text-sm text-green-600 font-medium">Completed</span>
</div>
<div class="flex justify-between items-center p-4 bg-indigo-50 rounded-lg">
<div class="flex items-center">
<div class="bg-indigo-100 text-indigo-800 w-6 h-6 rounded-full flex items-center justify-center font-bold text-xs mr-3">2</div>
<span class="font-medium text-gray-800">Vision</span>
</div>
<span class="text-sm text-yellow-600 font-medium">In Progress</span>
</div>
<div class="flex justify-between items-center p-4 bg-gray-50 rounded-lg">
<div class="flex items-center">
<div class="bg-gray-200 text-gray-600 w-6 h-6 rounded-full flex items-center justify-center font-bold text-xs mr-3">3</div>
<span class="font-medium text-gray-500">Market</span>
</div>
<span class="text-sm text-gray-500 font-medium">Not Started</span>
</div>
</div>
</div>
<div class="bg-gray-50 px-6 py-4 flex justify-between items-center">
<span class="text-sm text-gray-600">Your data is saved automatically</span>
<button class="text-indigo-600 font-medium flex items-center">
Export as JSON <i data-feather="download" class="w-4 h-4 ml-2"></i>
</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12 px-4">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div class="md:col-span-2">
<div class="flex items-center mb-4">
<i data-feather="compass" class="text-indigo-400 w-6 h-6 mr-2"></i>
<h3 class="text-xl font-bold">DecisiveAI Pathfinder</h3>
</div>
<p class="text-gray-400 mb-4">Transform your abstract idea into a successful product with our structured framework and AI-powered guidance.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="linkedin" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="github" class="w-5 h-5"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Framework</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Mission & Vision</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Market Segmentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Core Need Discovery</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Solution Principles</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Case Studies</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Community</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact Us</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-10 pt-6 text-sm text-gray-400">
<div class="flex flex-col md:flex-row justify-between items-center">
<p>© 2023 DecisiveAI Pathfinder. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="hover:text-white">Privacy Policy</a>
<a href="#" class="hover:text-white">Terms of Service</a>
</div>
</div>
</div>
</div>
</footer>
</div>
<script>
// Initialize Vanta.js background
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x5e6cff,
backgroundColor: 0xf8fafc,
size: 0.8
});
// Initialize Feather Icons
feather.replace();
// Simple animation for decision cards
document.addEventListener('DOMContentLoaded', () => {
const cards = document.querySelectorAll('.decision-card');
cards.forEach((card, index) => {
card.style.animationDelay = `${index * 0.1}s`;
});
});
</script>
</body>
</html>