Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
benface committed Dec 18, 2024
1 parent 70b5267 commit 51b2de2
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 117 deletions.
4 changes: 3 additions & 1 deletion packages/nextra-theme/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,9 @@ export default function NextraLayout({ children, pageOpts, pageProps }: NextraTh
{args.activePath.map((item) => item.title).join(' > ')}
</div>
) : null}
{frontMatter.title ? <Heading.H1>{frontMatter.title}</Heading.H1> : null}
{frontMatter.title || args.activeIndex === 0 ? (
<Heading.H1>{args.activeIndex === 0 ? 'The Graph Docs' : frontMatter.title}</Heading.H1>
) : null}
{lastUpdated || readingTime ? (
<Paragraph size="14px">
{lastUpdated ? (
Expand Down
2 changes: 1 addition & 1 deletion website/pages/en/subgraphs/developing/introduction.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Introduction to Development
title: Introduction to Subgraph Development
---

To start coding right away, go to [Developer Quick Start](/quick-start/).
Expand Down
Loading

0 comments on commit 51b2de2

Please sign in to comment.