Skip to content

Commit

Permalink
update footer (#1565)
Browse files Browse the repository at this point in the history
  • Loading branch information
louisachu authored Feb 28, 2024
1 parent f6c2285 commit 1c840a1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions packages/gatsby-theme-aio/src/components/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,20 @@ const { APIs, services, community, support, developer, legal, allAPIs } = {
path: '/document-services/homepage'
}
],
services: [
{
title: 'Adobe Cloud Manager',
path: '/experience-cloud/cloud-manager'
},
{
title: 'Adobe Analytics',
path: '/analytics-apis/docs/2.0'
},
{
title: 'App Builder',
path: '/app-builder'
}
],
community: [
{
title: 'Adobe Tech Blog',
Expand Down Expand Up @@ -84,6 +98,10 @@ const { APIs, services, community, support, developer, legal, allAPIs } = {
title: 'Open source at Adobe',
path: '/open'
},
{
title: 'Download SDKs',
path: '/console/downloads'
},
{
title: 'Authentication',
path: '/developer-console/docs/guides/authentication'
Expand Down Expand Up @@ -251,6 +269,15 @@ const Footer = ({ hasSideNav = false }) => (
</Link>
</li>
))}
{services.map(({ title, path }, i) => (
<li key={i}>
<Link isQuiet={true} variant="secondary">
<a {...getExternalLinkProps(path)} href={path}>
{title}
</a>
</Link>
</li>
))}
<li>
<Link isQuiet={true}>
<a {...getExternalLinkProps(allAPIs.path)} href={allAPIs.path} aria-labelledby="allAPIsDesc">
Expand Down

0 comments on commit 1c840a1

Please sign in to comment.