-
Notifications
You must be signed in to change notification settings - Fork 421
docs: restructure Learn section, migrate from old site #2323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR restructures the Learn section to improve organization and navigation of Celestia documentation. The changes consolidate data availability content, reorganize TIA documentation, and update build guides.
Key changes:
- Restructured celestia-101 section with focused pages on data availability, retrievability, and transaction lifecycle
- Added new TIA documentation for submitting data and paying for blobspace
- Updated navigation links and metadata across multiple sections
Reviewed changes
Copilot reviewed 19 out of 21 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| app/page.mdx | Updated landing page links to point to restructured Learn section |
| app/learn/celestia-101/transaction-lifecycle/page.mdx | New page documenting the lifecycle of celestia-app transactions |
| app/learn/celestia-101/retrievability/page.mdx | New page on data retrievability and pruning (v6 sampling window) |
| app/learn/celestia-101/resources/page.mdx | New page consolidating data dashboards and analytics resources |
| app/learn/celestia-101/data-availability/page.mdx | Major refactor: added tl;dr, moved sections to separate pages, updated v6 references |
| app/learn/celestia-101/data-availability-faq/page.mdx | New FAQ page extracted from da-faq.mdx |
| app/learn/celestia-101/da-faq/page.mdx | Deleted (content moved to data-availability-faq/page.mdx) |
| app/learn/celestia-101/celestia/page.mdx | Deleted (content consolidated into data-availability/page.mdx) |
| app/learn/celestia-101/_meta.js | Updated navigation metadata for restructured celestia-101 section |
| app/learn/TIA/submit-data/page.mdx | New comprehensive guide on submitting data blobs to Celestia |
| app/learn/TIA/staking/page.mdx | Added note about CIP-30 reward distribution changes |
| app/learn/TIA/paying-for-blobspace/page.mdx | New page explaining PayForBlobs transactions and fee market |
| app/learn/TIA/_meta.js | Updated navigation metadata for TIA section |
| app/layout.tsx | Code formatting changes (single to double quotes, multi-line formatting) |
| app/build/post-retrieve-blob/twinkle/page.mdx | Deleted Twinkle tutorial |
| app/build/post-retrieve-blob/overview/page.mdx | New overview page for posting/retrieving blobs |
| app/build/post-retrieve-blob/client/rust/page.mdx | Added docs.rs reference link |
| app/build/post-retrieve-blob/_meta.js | Updated navigation metadata (removed twinkle, added overview) |
| .github/workflows/lint.yaml | Added URL exclusions for link checking workflow |
Comments suppressed due to low confidence (1)
app/learn/celestia-101/data-availability/page.mdx:1
- The internal link reference
/learn/celestia-101/DAis now incorrect. Based on the _meta.js changes, the page slug changed from 'DA' to 'data-availability'. This link should be updated to/learn/celestia-101/data-availability.
---
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| with: | ||
| fail: true | ||
| args: --verbose --exclude '^https?://localhost(:[0-9]+)?/?$' --exclude 'https://hibachi.xyz/' 'README.md' 'app/**/*.mdx' 'app/**/*.md' 'https://dl.acm.org/doi/abs/10.1145/98163.98167' 'https://lib.rs/crates/celestia-client' | ||
| args: --verbose --exclude '^https?://localhost(:[0-9]+)?/?$' --exclude 'https://hibachi.xyz/' --exclude 'https://dl.acm.org/doi/abs/10.1145/98163.98167' --exclude 'https://lib.rs/crates/celestia-client' --exclude 'https://github.com/celestiaorg/celestia-app/blob/29906a468910184f221b42be0a15898722a2b08f/specs/src/parameters_v6.md?plain=1#L31' README.md app/**/*.mdx app/**/*.md |
Copilot
AI
Dec 4, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The lint arguments have become very long and hard to read. Consider moving the excluded URLs to a separate configuration file (.lycheeignore or similar) to improve maintainability.
gbarros
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As we talked, all good!
Overview