Skip to content

Commit ed9966e

Browse files
ofriwclaude
andcommitted
Update homepage navigation with FAQ link
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 065bcdb commit ed9966e

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

website/src/pages/index.tsx

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,17 +120,20 @@ function HomepageHeader() {
120120
</Link>
121121
</div>
122122
<div className={styles.heroStats}>
123+
<Link
124+
to="/docs/faq"
125+
className={styles.heroStatLink}
126+
>
127+
FAQ
128+
</Link>
129+
<span className={styles.statsSeparator}>|</span>
123130
<Link to="/docs" className={styles.heroStatLink}>
124131
{LESSON_COUNT} Lessons
125132
</Link>
126133
<span className={styles.statsSeparator}>|</span>
127134
<Link to="/prompts" className={styles.heroStatLink}>
128135
{PROMPT_COUNT} Production Prompts
129136
</Link>
130-
<span className={styles.statsSeparator}>|</span>
131-
<a href="#ecosystem" className={styles.heroStatLink}>
132-
Research Tools
133-
</a>
134137
</div>
135138
</div>
136139
<TerminalWindow />
@@ -310,7 +313,7 @@ function SocialProofBar() {
310313
rel="noopener noreferrer"
311314
className={styles.repoLink}
312315
>
313-
<GitHubIcon /> Course
316+
<GitHubIcon /> Agentic Coding
314317
{courseStars !== null && (
315318
<>
316319
{' '}
@@ -589,13 +592,13 @@ function CourseModules() {
589592
const modules = [
590593
{
591594
number: 1,
592-
title: 'Understanding the Tools',
595+
title: 'Fundamentals',
593596
topics: [
594597
'LLM internals: context, attention, token limits',
595598
'What breaks: hallucinations, code drift, refactoring',
596599
'Context management and RAG integration',
597600
],
598-
link: '/docs/understanding-the-tools/lesson-1-intro',
601+
link: '/docs/fundamentals/lesson-1-how-llms-work',
599602
},
600603
{
601604
number: 2,

0 commit comments

Comments
 (0)