Skip to content

Commit a7c7afe

Browse files
committed
feat: Add research roadmap blog post and navigation, removing previous research content from the homepage and RESEARCH.md.
1 parent ec0acd5 commit a7c7afe

4 files changed

Lines changed: 29 additions & 1 deletion

File tree

RESEARCH.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
32
## Open Tasks
43

54
[Does RoPE mess with semantics of the vectors, what would you do differently? ➝](/blog/rope-semantics)

app/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export default function Home() {
6767
{aboutContent}
6868
</ReactMarkdown>
6969

70+
{/*
7071
{researchContent && (
7172
<ReactMarkdown
7273
remarkPlugins={[remarkGfm]}
@@ -86,6 +87,7 @@ export default function Home() {
8687
{researchContent}
8788
</ReactMarkdown>
8889
)}
90+
*/}
8991
</div>
9092

9193
</div>

blog-posts/research-roadmap.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "Research Roadmap"
3+
date: "2026-03-03"
4+
description: ""
5+
---
6+
7+
# Research Roadmap
8+
9+
We are actively discovering new highest impact areas.
10+
11+
Currently we are working on LLM & JEPA.
12+
13+
## LLM Research
14+
15+
[writing in progress]
16+
17+
## JEPA
18+
19+
[writing in progress]

components/navigation.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ export function Navigation({ }: NavigationProps) {
2727
<div className="absolute inset-0 bg-[#f0eee6]/0 group-hover:bg-[#f0eee6]/5 rounded-lg transition-all duration-300"></div>
2828
</Link>
2929

30+
<Link
31+
href="/blog/research-roadmap"
32+
className="group relative px-4 py-2 text-sm font-medium text-[#f0eee6]/70 hover:text-[#f0eee6] transition-all duration-300"
33+
>
34+
<span className="relative z-10">Research Roadmap</span>
35+
<div className="absolute inset-0 bg-[#f0eee6]/0 group-hover:bg-[#f0eee6]/5 rounded-lg transition-all duration-300"></div>
36+
</Link>
37+
3038
<Link
3139
href="/blog/weekly-research-posts"
3240
className="group relative px-4 py-2 text-sm font-medium text-[#f0eee6]/70 hover:text-[#f0eee6] transition-all duration-300"

0 commit comments

Comments
 (0)