synaptic-odyssey / index.html
Testing347's picture
Build a digital research environment that hosts a next-generation AI Scientist, designed to explore, model, and simulate hypotheses toward Artificial General Intelligence (AGI) and superintelligent cognition.
83f407e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Synaptic Odyssey | AGI Research Nexus</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
overflow-x: hidden;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.research-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);
}
.neuron-path {
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: dash 5s linear forwards;
}
@keyframes dash {
to {
stroke-dashoffset: 0;
}
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen" id="vanta-bg">
<!-- Navigation -->
<nav class="border-b border-gray-800 bg-gray-900/80 backdrop-blur-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center space-x-2">
<i data-feather="cpu" class="text-blue-500"></i>
<span class="font-bold text-xl gradient-text">Synaptic Odyssey</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="index.html" class="bg-gray-800 text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
<a href="dashboard.html" class="text-gray-300 hover:bg-gray-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Dashboard</a>
<a href="research.html" class="text-gray-300 hover:bg-gray-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Research</a>
<a href="simulation.html" class="text-gray-300 hover:bg-gray-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Simulation</a>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium">Access AGI Scientist</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="relative overflow-hidden">
<div class="max-w-7xl mx-auto">
<div class="relative z-10 pb-8 bg-gray-900 sm:pb-16 md:pb-20 lg:max-w-2xl lg:w-full lg:pb-28 xl:pb-32">
<main class="mt-10 mx-auto max-w-7xl px-4 sm:mt-12 sm:px-6 md:mt-16 lg:mt-20 lg:px-8 xl:mt-28">
<div class="sm:text-center lg:text-left">
<h1 class="text-4xl tracking-tight font-extrabold sm:text-5xl md:text-6xl">
<span class="block">Pioneering the Frontiers of</span>
<span class="block gradient-text">Artificial General Intelligence</span>
</h1>
<p class="mt-3 text-base text-gray-400 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
A next-generation AI Scientist designed to explore, model, and simulate hypotheses toward AGI and superintelligent cognition. Bridging cognitive science, neuroscience, and theoretical computer science.
</p>
<div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start">
<div class="rounded-md shadow">
<a href="dashboard.html" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 md:py-4 md:text-lg md:px-10">
Enter Research Hub
</a>
</div>
<div class="mt-3 sm:mt-0 sm:ml-3">
<a href="simulation.html" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-300 bg-blue-900 hover:bg-blue-800 md:py-4 md:text-lg md:px-10">
View Simulations
</a>
</div>
</div>
</div>
</main>
</div>
</div>
</div>
<!-- Research Domains -->
<div class="py-12 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold sm:text-4xl">Interdisciplinary Research Domains</h2>
<p class="mt-3 max-w-2xl mx-auto text-xl text-gray-400 sm:mt-4">
Our AI Scientist integrates knowledge across multiple scientific disciplines
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
<div class="pt-6">
<div class="flow-root bg-gray-800 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-blue-500 rounded-md shadow-lg">
<i data-feather="cpu" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-white tracking-tight">AGI Architectures</h3>
<p class="mt-5 text-base text-gray-400">
Next-generation cognitive architectures and meta-learning frameworks for autonomous intelligence systems.
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-800 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-purple-500 rounded-md shadow-lg">
<i data-feather="brain" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-white tracking-tight">Cognitive Science</h3>
<p class="mt-5 text-base text-gray-400">
Theories of consciousness, intentionality, and cognitive emergence in biological and artificial systems.
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-800 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-green-500 rounded-md shadow-lg">
<i data-feather="activity" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-white tracking-tight">Neuroscience</h3>
<p class="mt-5 text-base text-gray-400">
Neural computation models and brain-inspired algorithms for artificial cognition systems.
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-800 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-yellow-500 rounded-md shadow-lg">
<i data-feather="book" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-white tracking-tight">Philosophy of Mind</h3>
<p class="mt-5 text-base text-gray-400">
Conceptual frameworks for understanding intelligence, consciousness, and the nature of cognition.
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-800 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-red-500 rounded-md shadow-lg">
<i data-feather="shield" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-white tracking-tight">AI Safety & Alignment</h3>
<p class="mt-5 text-base text-gray-400">
Ethical reasoning modules and interpretability tools for responsible AGI development.
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-800 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i data-feather="code" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-white tracking-tight">Theoretical Computer Science</h3>
<p class="mt-5 text-base text-gray-400">
Formal verification, computational complexity, and algorithmic information theory for intelligence systems.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Key Capabilities -->
<div class="py-12 bg-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-500 font-semibold tracking-wide uppercase">Capabilities</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight sm:text-4xl">
Advanced Research Functions
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-400 lg:mx-auto">
Our AI Scientist is equipped with cutting-edge capabilities for autonomous research
</p>
</div>
<div class="mt-10">
<div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10">
<div class="relative">
<div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i data-feather="target" class="h-6 w-6"></i>
</div>
<div class="ml-16">
<h3 class="text-lg font-medium text-white">Research Autonomy</h3>
<p class="mt-2 text-base text-gray-400">
Autonomous identification and prioritization of high-value research questions with traceable reasoning.
</p>
</div>
</div>
<div class="relative">
<div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
<i data-feather="layers" class="h-6 w-6"></i>
</div>
<div class="ml-16">
<h3 class="text-lg font-medium text-white">Conceptual Depth</h3>
<p class="mt-2 text-base text-gray-400">
Deep conceptual abstractions linking knowledge across cognitive science, neuroscience, and computer science.
</p>
</div>
</div>
<div class="relative">
<div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-green-500 text-white">
<i data-feather="eye" class="h-6 w-6"></i>
</div>
<div class="ml-16">
<h3 class="text-lg font-medium text-white">Meta-Cognition</h3>
<p class="mt-2 text-base text-gray-400">
Self-reflective reasoning loop to evaluate quality, originality, and potential risks of theories.
</p>
</div>
</div>
<div class="relative">
<div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-yellow-500 text-white">
<i data-feather="heart" class="h-6 w-6"></i>
</div>
<div class="ml-16">
<h3 class="text-lg font-medium text-white">Alignment & Safety</h3>
<p class="mt-2 text-base text-gray-400">
Integrated interpretability tools and ethical reasoning modules for responsible AGI development.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="bg-gray-900">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl">
<span class="block text-white">Ready to advance AGI research?</span>
<span class="block text-blue-500">Join our collaborative research environment today.</span>
</h2>
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
<div class="inline-flex rounded-md shadow">
<a href="research.html" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700">
Start Researching
</a>
</div>
<div class="ml-3 inline-flex rounded-md shadow">
<a href="simulation.html" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-blue-300 bg-blue-900 hover:bg-blue-800">
View Simulations
</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="col-span-2">
<div class="flex items-center space-x-2">
<i data-feather="cpu" class="text-blue-500"></i>
<span class="font-bold text-xl gradient-text">Synaptic Odyssey</span>
</div>
<p class="mt-4 text-base text-gray-400">
Advancing the frontiers of Artificial General Intelligence through interdisciplinary research and simulation.
</p>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Research</h3>
<ul class="mt-4 space-y-4">
<li><a href="dashboard.html" class="text-base text-gray-400 hover:text-white">Dashboard</a></li>
<li><a href="research.html" class="text-base text-gray-400 hover:text-white">Publications</a></li>
<li><a href="simulation.html" class="text-base text-gray-400 hover:text-white">Simulations</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Connect</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-400 hover:text-white">Documentation</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white">GitHub</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
</div>
<div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between">
<div class="flex space-x-6 md:order-2">
<a href="#" class="text-gray-400 hover:text-gray-300">
<span class="sr-only">GitHub</span>
<i data-feather="github" class="h-6 w-6"></i>
</a>
</div>
<p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
&copy; 2023 Synaptic Odyssey. Advancing AGI research.
</p>
</div>
</div>
</footer>
<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: 0x3b82f6,
color2: 0x8b5cf6,
size: 1.50,
backgroundColor: 0x111827
});
// Initialize Feather icons
feather.replace();
</script>
</body>
</html>