|
29 | 29 | ├── product/ [Product-related components] |
30 | 30 | │ ├── ProductHero.tsx [Product header info] |
31 | 31 | │ ├── ProductPricing.tsx [Pricing section] |
32 | | - │ ├── ProductLinks.tsx [Resource/community links] |
| 32 | + │ ├── ResourceLinks.tsx [Resource links (download, changelog, pricing, mcp, issue)] |
| 33 | + │ ├── CommunityLinks.tsx [Community links (linkedin, twitter, github, youtube, discord, reddit, blog)] |
33 | 34 | │ ├── ProductCommands.tsx[Install/launch commands] |
34 | 35 | │ ├── RelatedProducts.tsx[Related products grid] |
35 | 36 | │ ├── LinkCard.tsx [Link card component] |
|
61 | 62 | ├── ComparisonTable.tsx [Comparison data table] |
62 | 63 | ├── CollectionScrollbar.tsx [Horizontal scroll for collections] |
63 | 64 | ├── CollectionSection.tsx [Collection section wrapper] |
64 | | - ├── CommunityLinks.tsx [Community links (Twitter, Discord, etc.)] |
65 | 65 | ├── MarkdownContent.tsx [Markdown content renderer] |
66 | 66 | ├── MDXComponents.tsx [MDX component mappings] |
67 | 67 | ├── ModelBenchmarks.tsx [Model benchmark scores] |
|
114 | 114 | <ProductHero {...product} /> |
115 | 115 | <RelatedProducts products={...} /> |
116 | 116 | <ProductPricing pricing={...} /> |
117 | | - <ProductLinks links={...} /> |
| 117 | + <ResourceLinks resourceUrls={...} title="Resources" links={...} /> |
| 118 | + <CommunityLinks communityUrls={...} title="Community" links={...} /> |
118 | 119 | <ProductCommands commands={...} /> |
119 | 120 | <BackToNavigation href="/ides" title="All IDEs" /> |
120 | 121 | </PageLayout> |
@@ -172,10 +173,10 @@ src/ |
172 | 173 | │ │ └── PlatformIcons │ |
173 | 174 | │ ├── RelatedProducts → LinkCard │ |
174 | 175 | │ ├── ProductPricing │ |
175 | | -│ ├── ProductLinks │ |
| 176 | +│ ├── ResourceLinks → LinkCardGrid → LinkCard │ |
| 177 | +│ ├── CommunityLinks → LinkCardGrid → LinkCard → PlatformIcons │ |
176 | 178 | │ ├── ProductCommands → CopyButton │ |
177 | 179 | │ ├── PlatformLinks → PlatformIcons │ |
178 | | -│ ├── CommunityLinks → PlatformIcons │ |
179 | 180 | │ ├── ModelSpecifications │ |
180 | 181 | │ ├── ModelBenchmarks │ |
181 | 182 | │ ├── VendorProducts → LinkCard │ |
|
199 | 200 |
|
200 | 201 | | Page Type | Layout | Components Used | |
201 | 202 | |-----------|--------|-----------------| |
202 | | -| IDE Detail | PageLayout | Breadcrumb, ProductHero, RelatedProducts, ProductPricing, ProductLinks, ProductCommands, BackToNavigation | |
203 | | -| CLI Detail | PageLayout | Breadcrumb, ProductHero, RelatedProducts, ProductPricing, ProductLinks, ProductCommands, BackToNavigation | |
204 | | -| Extension Detail | PageLayout | Breadcrumb, ProductHero, RelatedProducts, ProductPricing, ProductLinks, ProductCommands, BackToNavigation | |
| 203 | +| IDE Detail | PageLayout | Breadcrumb, ProductHero, RelatedProducts, ProductPricing, ResourceLinks, CommunityLinks, ProductCommands, BackToNavigation | |
| 204 | +| CLI Detail | PageLayout | Breadcrumb, ProductHero, RelatedProducts, ProductPricing, ResourceLinks, CommunityLinks, ProductCommands, BackToNavigation | |
| 205 | +| Extension Detail | PageLayout | Breadcrumb, ProductHero, RelatedProducts, ProductPricing, ResourceLinks, CommunityLinks, ProductCommands, BackToNavigation | |
205 | 206 | | Model Detail | PageLayout | Breadcrumb, ProductHero, PlatformLinks, ModelSpecifications, ModelBenchmarks, BackToNavigation | |
206 | 207 | | Vendor Detail | PageLayout | Breadcrumb, ProductHero, CommunityLinks, VendorProducts, VendorModels, BackToNavigation | |
207 | 208 | | Provider Detail | PageLayout | Breadcrumb, ProductHero, PlatformLinks, CommunityLinks, BackToNavigation | |
|
0 commit comments