Skip to content

Commit

Permalink
Merge pull request #1989 from OctopusDeploy/sf/footer-links
Browse files Browse the repository at this point in the history
Extend the footer links
  • Loading branch information
steve-fenton-octopus authored Sep 1, 2023
2 parents f103bb7 + 13dd72c commit 21fd406
Show file tree
Hide file tree
Showing 4 changed files with 289 additions and 47 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"dependencies": {
"@astrojs/mdx": "^1.0.0",
"astro": "^3.0.3",
"astro-accelerator": "^0.3.1",
"astro-accelerator-utils": "^0.2.39",
"astro-accelerator": "^0.3.4",
"astro-accelerator-utils": "^0.3.0",
"hast-util-from-selector": "^3.0.0",
"remark-directive": "^2.0.1",
"remark-heading-id": "^1.0.1"
Expand Down
146 changes: 135 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

184 changes: 151 additions & 33 deletions src/data/footer.ts
Original file line number Diff line number Diff line change
@@ -1,42 +1,160 @@
import type { NavPage } from 'astro-accelerator-utils/types/NavPage';
import type { MenuItem } from 'astro-accelerator-utils/types/NavPage';

export const menu: (NavPage | 'categories' | 'tags' | 'toptags')[] = [
export const menu: (MenuItem | 'categories' | 'tags' | 'toptags')[] = [
{
title: '<img src="/docs/img/octopus.svg" alt="Octopus Deploy" class="octo-logo" width="40" height="43">',
url: '',
ariaCurrent: false,
isOpen: false,
order: 1,
section: '',
children: []
},
'categories',
'toptags',
{
title: 'Quick Links',
url: '',
ariaCurrent: false,
isOpen: false,
order: 1,
section: '',
children: [{
title: 'Octopus Slack Community',
url: 'https://oc.to/DevOpsMicrosite',
ariaCurrent: false,
isOpen: false,
order: 1,
section: '',
children: []
},{
title: 'Octopus Deploy',
url: 'https://octopus.com',
ariaCurrent: false,
isOpen: false,
order: 1,
section: '',
children: []
}]
}];
title: 'Product',
order: 2,
children: [
{
title: 'Features',
url: 'https://octopus.com/features',
order: 1,
},
{
title: 'Tenanted deployments',
url: 'https://octopus.com/use-case/tenanted-deployments',
order: 2,
},
{
title: 'Container deployments',
url: 'https://octopus.com/use-case/container-deployments',
order: 3,
},
{
title: 'What\'s new',
url: 'https://octopus.com/whatsnew',
order: 4,
},
{
title: 'Roadmap',
url: 'https://roadmap.octopus.com/tabs/2-planned',
order: 5,
},
{
title: 'Octopus vs. Azure DevOps',
url: 'https://octopus.com/azure-devops',
order: 6,
},
{
title: 'Octopus vs. Jenkins',
url: 'https://octopus.com/jenkins',
order: 7,
},
]
},
{
title: 'Learn',
order: 3,
children: [
{
title: 'Getting started',
url: '/docs/getting-started',
order: 1,
},
{
title: 'Guides',
url: 'https://octopus.com/docs/guides',
order: 2,
},
{
title: 'DevOps handbook',
url: 'https://octopus.com/devops/',
order: 3,
},
{
title: 'Deployments',
url: '/docs/deployment-process',
order: 4,
},
{
title: 'Runbooks',
url: '/docs/runbooks',
order: 5,
},
{
title: 'Training videos',
url: 'https://www.youtube.com/playlist?list=PLAGskdGvlaw268i2ZTPC1ZrxwFjjKIdKH',
order: 6,
},
]
},
{
title: 'Help',
order: 4,
children: [
{
title: 'Contact',
url: 'https://octopus.com/company/contact',
order: 1,
},
{
title: 'Help and support',
url: 'https://octopus.com/support',
order: 2,
},
{
title: 'Community',
url: 'https://octopus.com/community',
order: 3,
},
{
title: 'Discussion forum',
url: 'https://help.octopus.com/',
order: 4,
},
{
title: 'Upgrade and renew',
url: 'https://octopus.com/upgrade',
order: 5,
},
]
},
{
title: 'About us',
order: 5,
children: [
{
title: 'Company',
url: 'https://octopus.com/company',
order: 1,
},
{
title: 'Partners',
url: 'https://octopus.com/partners',
order: 2,
},
{
title: 'Careers',
url: 'https://octopus.com/company/careers',
order: 3,
},
{
title: 'Trust center',
url: 'https://octopus.com/company/trust',
order: 4,
},
{
title: 'Security',
url: 'https://octopus.com/docs/security',
order: 5,
},
{
title: 'Webinars and events',
url: 'https://octopus.com/events',
order: 6,
},
{
title: 'Stickers and swag',
url: 'https://shop.octopus.com/',
order: 7,
},
]
},
];

/*
See navigation.ts
Expand Down
Loading

0 comments on commit 21fd406

Please sign in to comment.