Skip to content

Commit 68d1b65

Browse files
committed
fix: Comment out non-existent sidebar pages to fix build
- Only keep Getting Started pages that exist - Comment out Guides, API Reference, and Examples sections - Will add them back as we create the content pages
1 parent c32b830 commit 68d1b65

File tree

1 file changed

+28
-27
lines changed

1 file changed

+28
-27
lines changed

astro.config.mjs

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -45,33 +45,34 @@ export default defineConfig({
4545
{ label: 'Quick Start', slug: 'getting-started/quick-start' },
4646
],
4747
},
48-
{
49-
label: 'Guides',
50-
items: [
51-
{ label: 'Type Mapping', slug: 'guides/type-mapping' },
52-
{ label: 'Anchor Integration', slug: 'guides/anchor-integration' },
53-
{ label: 'Enum Support', slug: 'guides/enum-support' },
54-
{ label: 'Migration Guide', slug: 'guides/migration-guide' },
55-
],
56-
},
57-
{
58-
label: 'API Reference',
59-
items: [
60-
{ label: 'CLI Commands', slug: 'api/cli-commands' },
61-
{ label: 'Parser', slug: 'api/parser' },
62-
{ label: 'Generators', slug: 'api/generators' },
63-
],
64-
},
65-
{
66-
label: 'Examples',
67-
items: [
68-
{ label: 'Gaming Platform', slug: 'examples/gaming' },
69-
{ label: 'NFT Marketplace', slug: 'examples/nft-marketplace' },
70-
{ label: 'DeFi Staking', slug: 'examples/defi-staking' },
71-
{ label: 'DAO Governance', slug: 'examples/dao-governance' },
72-
{ label: 'Token Vesting', slug: 'examples/token-vesting' },
73-
],
74-
},
48+
// TODO: Add these sections as we create the content
49+
// {
50+
// label: 'Guides',
51+
// items: [
52+
// { label: 'Type Mapping', slug: 'guides/type-mapping' },
53+
// { label: 'Anchor Integration', slug: 'guides/anchor-integration' },
54+
// { label: 'Enum Support', slug: 'guides/enum-support' },
55+
// { label: 'Migration Guide', slug: 'guides/migration-guide' },
56+
// ],
57+
// },
58+
// {
59+
// label: 'API Reference',
60+
// items: [
61+
// { label: 'CLI Commands', slug: 'api/cli-commands' },
62+
// { label: 'Parser', slug: 'api/parser' },
63+
// { label: 'Generators', slug: 'api/generators' },
64+
// ],
65+
// },
66+
// {
67+
// label: 'Examples',
68+
// items: [
69+
// { label: 'Gaming Platform', slug: 'examples/gaming' },
70+
// { label: 'NFT Marketplace', slug: 'examples/nft-marketplace' },
71+
// { label: 'DeFi Staking', slug: 'examples/defi-staking' },
72+
// { label: 'DAO Governance', slug: 'examples/dao-governance' },
73+
// { label: 'Token Vesting', slug: 'examples/token-vesting' },
74+
// ],
75+
// },
7576
{
7677
label: 'Changelog',
7778
link: '/changelog/',

0 commit comments

Comments
 (0)