Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a blockchain type selector for CCIP documentation, allowing users to filter content by chain (EVM, Solana, Aptos) and navigate to equivalent pages for the selected chain. It also refactors the use of the
Calloutcomponent to a shared import path throughout the CCIP tutorial components and implements sidebar filtering based on the selected chain type for improved user experience.New Chain Type Selector & Sidebar Integration
ChainTypeSelectorReact component with a scalable, accessible dropdown UI for selecting blockchain type, including smart navigation to equivalent pages and Google Analytics tracking. (src/components/ChainSelector/ChainTypeSelector.tsx,src/components/ChainSelector/ChainTypeSelector.module.css, [1] [2]src/components/LeftSidebar/LeftSidebar.astro, [1] [2] [3] [4] [5]src/config/chainTypes.ts, src/config/chainTypes.tsR1-R80)src/components/LeftSidebar/RecursiveSidebar.astro, src/components/LeftSidebar/RecursiveSidebar.astroR118-R121)Refactoring & Consistency
Calloutcomponent from the new common path for consistency and maintainability. [1] [2] [3] [4] [5] [6] [7] [8]AptosCCTCalloutcomponent to inform users about upcoming Aptos documentation and provide a contact link for token developers. (src/components/CCIP/AptosCCTCallout.tsx, src/components/CCIP/AptosCCTCallout.tsxR1-R21)Exports & Imports
ChainTypeSelectorinstead of the olderChainSelector. (src/components/ChainSelector/index.ts, src/components/ChainSelector/index.tsL1-R1)Calloutcomponent is exported from the main components index for easy reuse. (src/components/index.ts, src/components/index.tsR23)