Skip to content

Commit 45d822b

Browse files
committed
working code
1 parent 396cc84 commit 45d822b

File tree

6 files changed

+1867
-76
lines changed

6 files changed

+1867
-76
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@
1212
[![AI Powered](https://img.shields.io/badge/🤖_AI-Powered-ff6b35?style=for-the-badge)](https://timecapsule.bubblspace.com/)
1313
[![Made with Love](https://img.shields.io/badge/Made_with-❤-red?style=for-the-badge)](https://x.com/thefirehacker)
1414

15+
### 🔮 **[🌟 View Our Complete Vision & Roadmap →](vision.md)**
16+
*Discover the future of AI-powered research, our current priorities, and upcoming showcase projects*
17+
1518
</div>
1619

1720
---
1821

1922
## 🔗 **Quick Links**
23+
- [🔮 **Project Vision & Roadmap**](vision.md) - *Future of AI Research*
2024
- [🚀 Key Features](#-key-features-2024)
2125
- [🌐 Experience Live Now](#-experience-live-now)
2226
- [🚦 How to Start](#-how-to-start)

index.html

Lines changed: 44 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,12 @@
127127
grid-column: span 1;
128128
}
129129

130+
/* Vision card and RAG card on second row */
131+
.feature-card.vision-card,
132+
.feature-card.rag-card {
133+
grid-column: span 1;
134+
}
135+
130136
/* Canvas card should be smaller and centered below */
131137
.feature-card.canvas {
132138
grid-column: span 2;
@@ -770,7 +776,8 @@
770776
<!-- Emergency Mobile Navigation Fix -->
771777
<link rel="stylesheet" href="mobile-navbar-fix.css?v=2024">
772778

773-
<!-- Common Navigation Component -->
779+
<!-- BubblSpace Navigation Component -->
780+
<div id="bubblspace-navbar"></div>
774781
<script src="lib/Pages/components/bubblspace-navbar.js"></script>
775782

776783
<div class="main-container">
@@ -846,6 +853,27 @@ <h2 class="feature-title">Playground</h2>
846853
</a>
847854
</div>
848855

856+
<!-- Project Vision Card -->
857+
<div class="feature-card research vision-card">
858+
<div class="feature-icon">🔮</div>
859+
<div class="feature-title">Project Vision & Roadmap</div>
860+
<div class="feature-subtitle">Building the Future of AI Research</div>
861+
<div class="feature-description">
862+
Discover our comprehensive vision for the future of AI-powered research and creative collaboration.
863+
See our current priorities, upcoming features, and long-term roadmap for TimeCapsule-SLM.
864+
</div>
865+
<ul class="feature-list">
866+
<li>Complete development roadmap and milestones</li>
867+
<li>Current priority queue and active features</li>
868+
<li>Upcoming showcase projects and demos</li>
869+
<li>Agent philosophy and design principles</li>
870+
</ul>
871+
<a href="vision.html" class="feature-cta research">
872+
<span>🔮</span>
873+
View Vision
874+
</a>
875+
</div>
876+
849877
<!-- In-Browser RAG Card -->
850878
<div class="feature-card research rag-card">
851879
<div class="feature-icon">🧠</div>
@@ -974,6 +1002,11 @@ <h2 class="feature-title">Canvas Creative Environment</h2>
9741002
// Track page view with correct page name
9751003
window.AppConfig.trackPageView('TimeCapsule-SLM - Complete AI-powered Research & Creative Platform', window.location.href);
9761004
}
1005+
1006+
// Initialize BubblSpace Navbar with home active
1007+
if (window.BubblSpaceNavbar) {
1008+
window.BubblSpaceNavbar.init('home');
1009+
}
9771010
});
9781011

9791012
// Enhanced keyboard navigation
@@ -992,8 +1025,15 @@ <h2 class="feature-title">Canvas Creative Environment</h2>
9921025
window.AppConfig.trackEvent('keyboard_navigation', 'navigation', 'playground');
9931026
}
9941027
}
1028+
if (e.key === '3' || e.key === 'v' || e.key === 'V') {
1029+
window.location.href = 'vision.html';
1030+
// Track navigation event
1031+
if (window.AppConfig) {
1032+
window.AppConfig.trackEvent('keyboard_navigation', 'navigation', 'vision');
1033+
}
1034+
}
9951035
// Canvas navigation temporarily disabled (launching soon)
996-
// if (e.key === '3' || e.key === 'c' || e.key === 'C') {
1036+
// if (e.key === '4' || e.key === 'c' || e.key === 'C') {
9971037
// window.location.href = 'Canvas.html';
9981038
// // Track navigation event
9991039
// if (window.AppConfig) {
@@ -1021,7 +1061,8 @@ <h2 class="feature-title">Canvas Creative Environment</h2>
10211061
cta.addEventListener('click', () => {
10221062
if (window.AppConfig) {
10231063
const feature = index === 0 ? 'deepresearch' :
1024-
index === 1 ? 'playground' : 'unknown';
1064+
index === 1 ? 'playground' :
1065+
index === 2 ? 'vision' : 'unknown';
10251066
window.AppConfig.trackEvent('feature_clicked', 'navigation', feature);
10261067
}
10271068
});

0 commit comments

Comments
 (0)