Skip to content
31 changes: 18 additions & 13 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,15 +230,6 @@ export default defineConfig({
nav: [
{ text: 'Why Cycles', link: '/why-cycles' },
{ text: 'Quickstart', link: '/quickstart/what-is-cycles' },
{ text: 'Protocol', link: '/protocol/' },
{
text: 'Tools',
items: [
{ text: 'All tools', link: '/calculators/' },
{ text: 'Blast Radius Risk Calculator', link: '/calculators/ai-agent-blast-radius-standalone' },
{ text: 'Cost Calculator (Claude vs GPT)', link: '/calculators/claude-vs-gpt-cost-standalone' },
],
},
{
text: 'Docs',
items: [
Expand All @@ -258,6 +249,7 @@ export default defineConfig({
items: [
{ text: 'API Reference (Interactive)', link: '/api/' },
{ text: 'Admin API (Interactive)', link: '/admin-api/' },
{ text: 'Protocol Reference (Interactive)', link: '/protocol/' },
{ text: 'Protocol Spec', link: 'https://github.com/runcycles/cycles-protocol' },
{ text: 'Configuration', link: '/configuration/python-client-configuration-reference' },
],
Expand All @@ -272,10 +264,23 @@ export default defineConfig({
},
],
},
{
text: 'Tools',
items: [
{ text: 'All tools', link: '/calculators/' },
{ text: 'Blast Radius Risk Calculator', link: '/calculators/ai-agent-blast-radius-standalone' },
{ text: 'Cost Calculator (Claude vs GPT)', link: '/calculators/claude-vs-gpt-cost-standalone' },
],
},
{ text: 'Pricing', link: '/pricing' },
{ text: 'Blog', link: '/blog/' },
{ text: 'Partners', link: '/design-partners' },
{ text: 'Contact', link: '/contact' },
{ text: 'GitHub', link: 'https://github.com/runcycles' }
{
text: 'Contact',
items: [
{ text: 'Talk to the team', link: '/contact' },
{ text: 'Become a design partner', link: '/design-partners' },
],
},
],
sidebar: {
'/api/': [
Expand Down Expand Up @@ -608,7 +613,7 @@ export default defineConfig({
],
},
socialLinks: [
{ icon: 'github', link: 'https://github.com/runcycles/cycles-docs' }
{ icon: 'github', link: 'https://github.com/runcycles' }
]
},
transformPageData(pageData) {
Expand Down
3 changes: 3 additions & 0 deletions .vitepress/theme/HomeContact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ const issuesUrl = 'https://github.com/runcycles/cycles-docs/issues'
.reason {
display: flex;
flex-direction: column;
margin: 0; /* override .vp-doc `li + li` margin when rendered inside markdown */
padding: 16px 18px;
border: 1px solid var(--vp-c-divider);
border-radius: 10px;
Expand Down Expand Up @@ -181,6 +182,8 @@ const issuesUrl = 'https://github.com/runcycles/cycles-docs/issues'

.cta-button:hover {
background: var(--vp-c-brand-2);
color: var(--vp-c-bg);
text-decoration: none;
}

.cta-button:active {
Expand Down
Loading